Is my hosting company trying to "pull the wool over my eyes"?
There response to upgrading to 4.2.1, was that it isn't
compatible with Zind optomizer 1.20?
The only *issue* I seen with 4.2.x is of course register_globals!
(which of course be changed in php.ini)
I don't have a problem with them ho
Let's see if I can keep this short and simple.
I'm having to problems with a hosting service.
1. index.php isn't being read as default index.
2. Form aren't working (see a below mail_call.php).
2A.The mail_call.php works on my localbox (apache-2.0.36 +PHP4.2.0)
2B. Hosting company,for reason they
Nick ---
Try this connect script.
Then from inside you php page use
HTH,
David
--- connect.php --
// database connect script
$dbhostname = "localhost";
$dbuser = "picklesql";
$dbpasswd = "pi56fb";
$dbname= "pickle";
$link = mysql_connect("$dbhostname", "$dbuser", "$dbpasswd")
or die
John ---
Thanks for your reply, but let me rephase the question.
Let say I have a form with 50 fields on it do I have to:
echo $_POST['one']
.
.
echo $POST['fifty']
Or should I, could I use extract()?
Thanks in advance,
David
p.s I said it was UGLY :)
> ?>
>
> If that's too ha
Rasmus Lerdorf wrote:
> See either extract() or import_request_variables() in the manual.
Rasmus --
I appreciate you taking the time to reply to my posting.
David
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
The code below works (but its ugly), but I know there has to be a why to
grab all the $_POST[] at once and then parse them out?
Isn't there a why for me to access them directory without reassigning them?
TIH,
David
$From";print "\n";
echo $Two;print "\n";
echo $Subject;print"\n";
echo $Commen
Miguel Cruz wrote:
> On Sat, 4 May 2002, David Jackson wrote:
>
>>Is I still recommended that config be run with the --enable-track-vars flag?
>>Or has this been deprieciated? Recently? Does the chagnes to global vars
>>come in to play here?
>
>
> I believe that has had no effect (i.e., they w
7 matches
Mail list logo