0
votes
What program do you use to edit php remotely and then upload to your server?
I use Zend Studio. I get the benefit of the IDE on my local machine (Linux/Mac/Win), and when I save it saves remotely on the server. It's kind of like the old HomeSite with some features (code com …
1
vote
What program do you use to edit php remotely and then upload to your server?
Using Notepad has to be the worst of any possible option I can think of. That hasn't been cool since ~1996. (no offense intended) :)
…
0
votes
Extra backslashes being added in PHP
I use stripslases() to remove slashes when displaying.
http://www.php.net/manual/en/function.stripslashes.php …
0
votes
A form that spits out the input
If I get your question right, sounds like this might do what you need..
Note: This PHP code doesn't require any knowledge of the fields in the form that submits to it, it just loops …
0
votes
Print out post values
This PHP code doesn't require any knowledge of the fields in the form that submits to it, it just loops through all of the fields, including multiple-choice fields (like checkboxes), and spits out …
0
votes
How do I get the key values from $_POST?
while( list( $field, $value ) = each( $_POST ) {
echo "<p>" . $field . " = " . $value . "</p>\n";
}
…
1
vote
i need help for framework concept in php
There are a lot of PHP frameworks available these days. The following website compares quite a few PHP frameworks currently available. Hope that helps.
…
0
votes
How do you find a description of the DateTime class in the PHP documentation?
There is a list of new classes in PHP 5.2.0 here:
http://www.php.net/manual/en/migration52.classes.php
…
1
vote
Object Oriented MySQL Statements, PHP
You should probably wrap the values() in parens too, like:
$MyDB->prep("INSERT INTO `demo` (`id`, `name`, `score`, `dept`, `date`) VALUES ('1','James Kablammo', '1205550', 'Marke …
0
votes
why are assignments in conditions bad ?
I use them all the time, with loops (not sure why that would make a difference), like:
$counter = 0;
while( $getWhateverDataObj = mysql_fetch_object( $sqlResult )) {
$getWhatever …
0
votes
Postage Calculator for PHP
The USPS has rate calculator APIs available for both domestic and international. You can learn more about them at the following site. Hope that helps.
…
0
votes
What web application framework should I use for a web gallery?
Flickr.com and their API may be suitable from what you described.
http://www.flickr.com/services/api/
…
5
votes
php mysql date/time question
MySQL datetime should be formatted with dashes:
YYYY-MM-DD HH:MM:SS
http://dev.mysql.com/doc/refman/5.0 …
3
votes
Calculate business days in PHP
There are some args for the date() function that should help. If you check date("w") it will give you a number for the day …
1
vote
Reverse IP Lookup
As a starting point you may want to look at the built-in function gethostbyname(), and also …
