RE: [PHP] the files I'm working with

2002-10-04 Thread Jon Haworth
Hi Marek, > safe enough would be to put this at the begining > if(!ereg('^[0-9]+$',$song) { > die('Sorry...') > } Sure, but why incur the expense of using the ereg() parser? If you're only ever going to be testing whether $song is a number or not, use http://php.net/is-numeric. Cheers Jon

Re: [PHP] the files I'm working with

2002-10-04 Thread Marek Kilimajer
safe enough would be to put this at the begining if(!ereg('^[0-9]+$',$song) { die('Sorry...') } Rick Beckman wrote: >song.php is the file that I'm using as my template file, and it calls >information from the includes/ directory, which the file "1" would be in. If >someone would please look