Re: [PHP] Can anyone recommend a hosting company

2005-12-16 Thread Jose Miguel
Try browsing the forums webhostingtalk.com, they have some pretty good reviews about several hosting companys. On 12/16/05, Marty <[EMAIL PROTECTED]> wrote: > > Can anyone recommend a fair priced, reliable hosting company that would > best > meet my needs as follows: > > > Shared plan with > PHP >

Re: [PHP] A dumb question - Regarding a php cms

2005-09-17 Thread Jose Miguel
Regarding paths, in a Windows enviroment, you should use double slash, like: c:\\www\\syntax desktop\\ Cheers. On 18 Sep 2005 09:13:56 +1000, Troy Pieterman <[EMAIL PROTECTED]> wrote: > > Im trying to run Syntax desktop which is a php cms (on my own server > win2003). > > In the installation

Re: [PHP] Cookie-question?

2005-09-07 Thread Jose Miguel
Ok, please correct me if i'm wrong... First of all, i'd rather use $_COOKIE instead of $HTTP_COOKIE_VARS. And in the line... if ($voteNow == 'Y' AND $userVote == 'Y' AND $cookieJoke != 'voted') { Why don't you use the operator NOT IDENTICAL (!==), cause != will also return true if the variable

Re: [PHP] php explained in sql

2005-08-21 Thread Jose Miguel
We should use: if (!empty($mydata->email)) in php, right? On 8/19/05, Jasper Bryant-Greene <[EMAIL PROTECTED]> wrote: > John Taylor-Johnston wrote: > > In php, if I wanted to know if $mydata->email contained something, I > > would do this, right? > > if ($mydata->email) > > {} > > > > How would