Re: [PHP] getting around the undefined index

2006-11-27 Thread Paul Novitski
At 11/27/2006 11:21 AM, Ross wrote: $text = $_REQUEST['text_size']; if ($text) { echo $text; } I send the $text_size variable to the browser with lines like... A When the page initially loads I get a undefined index error as it does not exist but is there a way of wrapping in in a switch st

Re: [PHP] getting around the undefined index

2006-11-27 Thread Eric Butera
On 11/27/06, Ross <[EMAIL PROTECTED]> wrote: I have not found a satisfactory way of doing this yet $text = $_REQUEST['text_size']; if ($text) { echo $text; } I send the $text_size variable to the browser with lines like... A When the page initially loads I get a undefined index error

Re: [PHP] getting around the undefined index

2006-11-27 Thread Stut
Ross wrote: I have not found a satisfactory way of doing this yet $text = $_REQUEST['text_size']; if ($text) { echo $text; } I send the $text_size variable to the browser with lines like... id="one">A When the page initially loads I get a undefined index error as it does not exist but i

[PHP] getting around the undefined index

2006-11-27 Thread Ross
I have not found a satisfactory way of doing this yet $text = $_REQUEST['text_size']; if ($text) { echo $text; } I send the $text_size variable to the browser with lines like... A When the page initially loads I get a undefined index error as it does not exist but is there a way of wra