I’ve a ZIP file (skins.zip) having the following structure: I need to delete folder called theme/ inside the skins.zip. I’ve tried the following code but didn’t worked. Can anyone help me, please? Answer I’ve just the following code and left the print_r output for you to understand wha…
Get coordinates from script tag, image tag, link
I’m building a search engine for deals and I put all deals on a map, so I need coordinates from websites with scraping. So, coordinates can be on scrit, tag, image, link, etc. Is there any tool or any script, framework, that help me to quick get coordinates from some web sites ? How to do that? With PHP…
PHP: move_uploaded_file() failed to open stream: No such file or directory
I’m trying to get PHP to move an uploaded file from the tmp directory to somewhere permanent on my webserver. It seems simple enough, but I’m getting this error: Unable to move ‘C:UniServertmpphp3F62.tmp’ to ‘static/images/slides/1/1.jpg’ Pretty straight-forward, right? It …
Website Scraping with PHP,Curl and MySQL Database
sorry am having bit of trouble here storing scraped content into MYSQL database. So what am trying to do is save the Module Code and Module Title from this site [http://www.ucc.ie/modules/descriptions/page014.html][1] into MYSQL database. Am able to get content from the site alright but I just cant seems to b…
Best way to handle dirty state in an ORM model
I don’t want anyone saying “you should not reinvent the wheel, use an open source ORM”; I have an immediate requirement and cannot switch. I’m doing a little ORM, that supports caching. Even not …
Symfony 2 dynamically change form based on a selected value
I have the following table: EventType can have a few values i.e check-in, checkout, room rent, misc, etc. I want to make a form that will change the field type of “Value” to text, date, or entity based on the selected type in “EventType”. I tried to find some solutions but didn’t…
what is the difference of absolute path in html and php?
I am developing a website on php, I have installed wamp on my personal computer and my website files are in the www folder of wamp. now considering www as my root folder i have a template folder in the root folder and header.inc.html file in the template folder. when I try to include this header.inc.html file…
Adding Attributes to Select Options in Joomla
I’m trying to add extra HTML attributes to some select options in a dropdown list in Joomla 2.5, and want to use the built-in HTML helpers rather than write the HTML by myself. The current output is: …
PHP setlocale has no effect
The setlocale() function doesn’t set the desired language (German). The goal is to output month names. This is my test code with trials so far: <?php date_default_timezone_set('Europe/Berlin'); …
preg_match bbcode
I currently have bbcode like this I’d like to use php’s preg_match so I can get the value of the image.jpg, regardless of what’s next to ‘caption=’. …