php-general Digest 28 Feb 2010 18:46:36 -0000 Issue 6614

2010-02-28 Thread php-general-digest-help
php-general Digest 28 Feb 2010 18:46:36 - Issue 6614 Topics (messages 302428 through 302429): Re: Uninstalling PHP? 302428 by: Austin Powers 302429 by: Colin Guthrie Administrivia: To subscribe to the digest, e-mail: php-general-digest-subscr...@lists.php.net To

[PHP] Re: Uninstalling PHP?

2010-02-28 Thread Colin Guthrie
'Twas brillig, and Austin Powers at 27/02/10 23:08 did gyre and gimble: Austin Powers austinpow...@pobox.com wrote in message news:ca.b0.29124.619a8...@pb1.pair.com... Three weeks ago I was working through the Lynda.com PHP with MySQL Training because I wanted to begin using PHP (surprise,

Re: [PHP] Wondering if anyone has experince with lastRSS

2010-02-28 Thread Rene Veerman
yea, google for lastrss.. or get wild and google for lastrss example or tutorial On Sun, Feb 28, 2010 at 12:05 AM, Watson Blair bestudios...@gmail.com wrote: Hey all, I'm looking at lastRSS as a solution for displaying an Ebay RSS feed on a website, however i'm having a hard time wrapping my

[PHP] mysqli_connect problem

2010-02-28 Thread Thomas H. George
I am a newbie. The following script works but the second one (below) loads the variables from an html form and then fails. The connection command in the second sript are identical as the first script was copied from the first. Only the variable values have been changed. #!/usr/bin/php # ?php

Re: [PHP] mysqli_connect problem

2010-02-28 Thread Rene Veerman
ok, couple of things; - if you're using user input in SQL queries, you have to push 'm through a function that sanitizes the input against sql-insertions. For now, let that be function antiSQLinsertion ($var) { return mysql_real_escape($var); }; - if you're going to output values from the DB into

RE: [PHP] Header function

2010-02-28 Thread Ashley Sheridan
On Sat, 2010-02-27 at 23:48 +1100, Nick allan wrote: Interesting the following works Changing the to '. If I leave the ' around the filename, the ' becomes part of the filename. But it seemed to be more about changing the surrounding ' to that fixed it. Not sure why this is, but its