php

Maintain runtime settings across environments in version control?

We are investigating the Magento ecommerce platform and refining our deployment and version control strategy. Right now, we are looking for the best way to keep multiple environments in sync (e.g. QA/Development environments/Production) when it comes to settings that are adjusted in the admin interface (e.g. Adding products, system conf...

Eclipse PDT HTML attribute assignment operator colour?

Hi, I would like to know how to change the colour of the equality sign and double quotes for html documents in the eclipse PDT IDE. I can change most colours in Preferences -> Web & XML -> HTML Files -> syntax coloring, but can't change the characters = or " e.g. in an anchor tag Anyone know if this is possible? ...

How can I convert all values of an array to floats in PHP?

I am fetching an array of floats from my database but the array I get has converted the values to strings. How can I convert them into floats again without looping through the array? Alternatively, how can I fetch the values from the database without converting them to strings? EDIT: I am using the Zend Framework and I am using PDO...

remove everything but the filename php

I'm trying to get rid of everything before the filename ex: /home/mike/whatever/test_1.txt leaving only test_1.txt what would the simplest way? thanks ...

Sending data from a page on one server, to another remote server. Language not dependant.

I'll try to keep this short and simple. I haven't begun writing the code for this project yet, but I'm trying to work out the pre-coding logistics as of right now. What I am looking to do, is create a method of sending data from one/any site, to another remote server, which would generate a response for the user requesting the data be s...

Pass variable into an input

I made an html file called test.html then I navigated to it as "http://site.com/test.html?test1=a" but the textbox stayed blank. Why is this? Super simple code <html> <head> <title>Test</title> </head> <body > <input type=text name="test1"> </body> </html> ...

Better support for CURL with PHP and Linux

I'm the developer of twittertrend.net, I was wondering if there was a faster way to get headers of a URL, besides doing curl_multi? I process over 250 URLs a minute, and I need a really fast way to do this from a PHP standpoint. Either a bash script could be used and then output the headers or C appliation, anything that could be faster?...

Caching variables in the $_SESSION variable? [PHP]

I'm making a php web application which stores user specific information that is not shared with other users. Would it be a good idea to store some of this information in the $_SESSION variable for caching? For example: cache a list of categories the user has created for their account. ...

Web crawler links/page logic in PHP

I'm writing a basic crawler that simply caches pages with PHP. All it does is use get_file_contents to get contents of a webpage and regex to get all the links out <a href="URL">DESCRIPTION</a> - at the moment it returns: Array { [url] => URL [desc] => DESCRIPTION } The problem I'm having is figuring out the logic behind determining wh...

Natural Language Unit Conversion in PHP?

I'm looking for a library (preferably in PHP) that can extract weigh / height data from a string. I want my users to input something like "I weigh 80 k and I'm 1.8m tall" or even "220 lb" and "6' 1" and pass it through a function that can extract the quantity and the unit. Anyone know if there's something like that out there? ...

Persistent HTTP GET variables in PHP

Let's say I have some code like this if(isset($_GET['foo'])) //do something if(isset($_GET['bar'])) //do something else If a user is at example.com/?foo=abc and clicks on a link to set bar=xyz, I want to easily take them to example.com/?foo=abc&bar=xyz, rather than example.com/?bar=xyz. I can think of a few very messy ways to...

Does a PHP Generator Framework or reference exist?

Back in the scripted ASP and ColdFusion days, I used to work on projects that would build code generators for ASP or Coldfusion, typically in C++, in order to be more object oriented in application design and not have developers writing scripted code, which often was called "spaghetti code" for it's size and complexity. Since I've been ...

PHP, MySQL on IIS - MySQL not being loaded when serving pages

I have, as best as I can manage, set up IIS (6.0), PHP (5.2.8) and MySQL (5.1.30) on Windows Server 2003, with all the involved mucking about (I think) in IIS and PHP to get things talking to each other. PHP does work - however, I cannot use the mysql or mysqli libraries from a PHP page. Fatal error: Class 'mysqli' not found in... Fata...

Can I specify a non strict method requirement for child classes? [PHP]

I have a base class in which I want to specify the methods a child class must have, but not implement them itself. However, the methods in a child class may have a different number of paramaters to the definition in the base class. Having tried this with an abstract method, php doesn't allow this. Is it possible? ...

member management by admin using php

sorry for asking an implement my feature question type question last tyme. i am new to satckoverflow.com and also to php thatts y what i was trying to ask is i have made a admin account.members have registration page so a member will register.when user registers in the database table i will have a field for which 0 value will be initi...

PHP - Function/variable naming

I have read a lot of popular standards manuals for open source PHP projects. A lot enforce underscores for variables spaces, and a lot enforce camelCase. Should global functions and variables be named differently to class methods/properties? I know the most important thing is consistency, but I'd like to hear some thoughts on this. W...

PHP is generating a numeral "1" on output of a function. I've never seen it do this before.

function holiday_hitlist($tablename, $hit_user){ global $host, $user, $pass, $dbname; $link = mysql_connect($host, $user, $pass, $dbname); print "<div class=\"hit_list\"> <h3>My Holiday Hitlist</h3> <p>Five things I want the most, based on my desirability ratings.<br/>You can't go wrong with this stuff!</p> <ol>"; $sql =...

Unable to exclude directories from PHPDocumentor

Hi all, I'm trying to run PHPDocumentor on my WAMPServer setup. It runs fine, but I'd like to exclude certain directories, such as \sqlbuddy\ which don't contain my own code. Ironically, PHPDocumentor appears to be ignoring my --ignore switch. I've tried several ways of expressing the same thing, but with the same result. Below is the c...

Is there a standalone alternative to activerecord-like database schema migrations?

Hi! Is there any standalone alternative to activerecord-like migrations. Something like a script that is able to track current schema version and apply outstanding migrations. Basically, these migration files could be just a plain SQL files, something like: [timestamp]_create_users.sql reverse_[timestamp]_create_users.sql Language of...

Dynamic image creation

Hi, Is it possible to convert some part of web page into a image. Lets say i have a div which contains a text and image inside. I want to store this entire div as an image on the server side, So that i can use that image from the next time onwards. Could you let me know whether there is any jquery plugin/ php extension which does thi...