[PHP] Re: New to PHP and struggling with the basics

2010-10-05 Thread Col Day
Thanks Gary! Nice to know I'm not the only one who has struggled with the Basics. Hopefully I can get my brain around it sometime soon. Cheers Col. "Gary" wrote in message news:i8f1r9$j4...@dough.gmane.org... Col Day wrote: Yes I did install apache then php, however I tried to follow the

Re: [PHP] Re: New to PHP question

2009-01-28 Thread Jim Lucas
Frank Stanovcak wrote: > "Don Collier" wrote in message > news:4980ac7e.2080...@collierclan.com... >> I am just learning PHP from the O'Reilly "Learning PHP 5" book and I have a >> question regarding the formatting of text. Actually it is a couple of >> questions. >> >> First, when I use the \

[PHP] Re: New to PHP question

2009-01-28 Thread Frank Stanovcak
"Don Collier" wrote in message news:4980ac7e.2080...@collierclan.com... >I am just learning PHP from the O'Reilly "Learning PHP 5" book and I have a >question regarding the formatting of text. Actually it is a couple of >questions. > > First, when I use the \n and run the script from the comm

[PHP] Re: New To PHP

2007-02-20 Thread Haydar TUNA
Hello, if you test your machine support PHP, you can use the following script. if this script properly execute, your machine can execute php script. if not you must support PHP.:) -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education Technology Department Anka

[PHP] Re: New to PHP

2006-01-19 Thread Dan Baker
"Jedidiah" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I mentioned earlier that I recently switched my site over to PHP. > I can no longer preview > my pages without uploading the files to the server. This can really > become > a problem when I am making slight formatting chang

[PHP] Re: new to php, need help..

2003-02-25 Thread Steve Magruder
"Jonathan" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > all the suggestions didn't work though, could it be as what chris said, my > IE doesn't support php? PHP is server-side. IE has no issues whatsoever with loading HTML generated from PHP. The PHP constructs are dealt with on

[PHP] Re: new to php, need help..

2003-02-21 Thread pei_world
I think the problem is your php.ini setting the global_variable, by default, it is off,coz more secure,so if you want to access the variable, you need $_POST[variable] or $_GET[variable], also, $_env[HTTP_GET_VARIABLE] or $_env[HTTP_POST_VARIABLE] check out the manual on the web -- Sincerely your;

[PHP] Re: new to php, need help..

2003-02-20 Thread Jonathan
thanks for helping guys :) sorry i don't have a url that i can upload my files too.. all i can show is my code.. :( the original code that i got from is from : http://www.linuxguruz.org/z.php?id=33 example 5: examples 1-4 seems to work, but other examples with this line doesn't, if you click

[PHP] Re: new to php, need help..

2003-02-20 Thread John Taylor-Johnston
Just a hunch: "" Try using " Do you have a URL to show us what your page does and doesn't do? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: New to PHP, and stuck

2002-11-06 Thread Erwin
Markus JäNtti wrote: > I'm working myself through Julie C. Meloni's book "PHP" and now I'm > stuck at chapter 12. > My script gives me this error: You have an error in your SQL syntax > near '()' at line 1 > even tho I've even tried replacing my own work with the file from the > book's companion-f

[PHP] Re: New to PHP/mySQL - Help on script

2002-08-26 Thread Richard Lynch
>Thanks for everyones help yesterday but nI have come up against a problem >(as I am new). I have created my document as detailed below with notes. I >can see from the form that I have connected to the server, accessed the >correct database, created the statment and executed it. The problem is how

[PHP] Re: new to php/mysql - insert not working

2002-03-20 Thread Matt Wallace
The actual typo in your code is a trailing comma in your sql statement. > '".$img_group."', '".$display."', )"; Strip out the comma after your last single quote. It's very useful to have CLI access to mysql. Then you could just say, print "QUERY: $query \n"; and instead of executing it, paste

[PHP] Re: New to PHP, just looking for resources is all =)

2001-09-10 Thread _lallous
http://www.weberdev.com/ http://www.phpbuilder.com http://www.zend.com "Pete Lopez" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi there, > > I am new to PHP and mySQL. I am a fairly quick learner and have set up a > script to add/modify/delete entries fr

Re: [PHP] Re: new to php

2001-09-09 Thread B. van Ouwerkerk
> > is it possible to create a table that automatically > > updates its contents every 30 seconds? > >I would use JavaScript to make the page reload itself. > >Note: this could generate a LOT of traffic. Yeah.. just until someone has javascript disabled. A meta tag refresh would do a better job

[PHP] Re: new to php

2001-09-09 Thread Hugh Bothwell
"Kostis Mentzelos" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > is it possible to create a table that automatically > updates its contents every 30 seconds? I would use JavaScript to make the page reload itself. Note: this could generate a LOT of traffic.