[PHP] Beginners question... (I think)

2004-07-06 Thread Koyaan
Unfortunately I'm not well informed about php and everything that comes with it. My site is created by someone who is totally out of the picture at ther moment and I have a problem On my site it was possible to create aktueeltjes (newsflashes) and add them on the aktueeltjes part of my site I

Re: [PHP] Beginners question... (I think)

2004-07-06 Thread Marek Kilimajer
Koyaan wrote: Unfortunately I'm not well informed about php and everything that comes with it. My site is created by someone who is totally out of the picture at ther moment and I have a problem On my site it was possible to create aktueeltjes (newsflashes) and add them on the aktueeltjes part of

RE: [PHP] beginners question

2004-02-24 Thread Jason Merrique
a button that when pressed will pass $var to input.php -Original Message- From: Steve [mailto:[EMAIL PROTECTED] Sent: 24 February 2004 05:16 To: [EMAIL PROTECTED] Subject: [PHP] beginners question I have this code $var=$_POST['Stock']; in one page further down in the code

[PHP] beginners question

2004-02-23 Thread Steve
I have this code $var=$_POST['Stock']; in one page further down in the code, if certain conditions are met, I want the user to click on a link that will take them to a form to fill in some info. I need to have the data that is in $var passed along to that new url. So I have

Re: [PHP] beginners question

2004-02-23 Thread John Nichel
Steve wrote: I have this code $var=$_POST['Stock']; in one page further down in the code, if certain conditions are met, I want the user to click on a link that will take them to a form to fill in some info. I need to have the data that is in $var passed along to that new url. So I have

Re: [PHP] beginners question

2004-02-23 Thread André Cerqueira
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 to avoid other issues followed by other threads about the same stuff of every 2 weeks: echo 'a href=input.php?Stock='. urlencode($var) .'Click to add/a' John Nichel wrote: Steve wrote: I have this code $var=$_POST['Stock']; in one page further

[PHP] Beginners question

2003-02-09 Thread Martin Purdy
Hi everybody I am totally new to PHP, and I have a problem with the Print statement. When I send a newline using \n nothing happens. I cannot get any linebreaks into my code. The following line is copied from the PHP Manual, and is sopposed to give me the text split into 3 lines, but they come

Re: [PHP] Beginners question

2003-02-09 Thread Leif K-Brooks
My guess is that the new lines are there, but since you're (most likely) outputting HTML, you don't see them. Take at look at the br HTML tag. Martin Purdy wrote: Hi everybody I am totally new to PHP, and I have a problem with the Print statement. When I send a newline using \n nothing

Re: [PHP] Beginners question

2003-02-09 Thread Martin Purdy
How do you use the output on a webpage then? Martin Leif K-Brooks [EMAIL PROTECTED] skrev i en meddelelse [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... My guess is that the new lines are there, but since you're (most likely) outputting HTML, you don't see them. Take at look at the br HTML

Re: [PHP] Beginners question

2003-02-09 Thread Paul Roberts
, 2003 8:16 PM Subject: Re: [PHP] Beginners question How do you use the output on a webpage then? Martin Leif K-Brooks [EMAIL PROTECTED] skrev i en meddelelse [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... My guess is that the new lines are there, but since you're (most likely) outputt

Re: SV: [PHP] Beginners question

2003-02-09 Thread Leif K-Brooks
Purdy -Oprindelig meddelelse- Fra: Leif K-Brooks [mailto:[EMAIL PROTECTED]] Sendt: 9. februar 2003 19:18 Til: Martin Purdy Cc: [EMAIL PROTECTED] Emne: Re: [PHP] Beginners question My guess is that the new lines are there, but since you're (most likely) outputting HTML, you don't see