Re: [PHP] PHP script gives no output or error message

2008-12-27 Thread John Musbach
On Sat, Dec 27, 2008 at 3:32 PM, John Musbach wrote: > > Thanks, turns out there were multiple problems with my code. My final > working code is: > > > > for anyone who may be trying to accomplish the same thing as me. In > addition I edited index.php in the themes folder and added a php > clause

Re: [PHP] PHP script gives no output or error message

2008-12-27 Thread John Musbach
On Sat, Dec 27, 2008 at 1:13 PM, Daniel Brown wrote: >Good afternoon, John; > >There's a syntax error on line 19: > >> if(external_fud_login(fud_fetch_user($user)['id']))!=NULL) //User ID is >> valid and logged in > >It should be: >if(external_fud_login(fud_fetch_user($user['i

Re: [PHP] PHP script gives no output or error message

2008-12-27 Thread Daniel Brown
Good afternoon, John; On Sat, Dec 27, 2008 at 03:28, John Musbach wrote: [snip!] There's a syntax error on line 19: > if(external_fud_login(fud_fetch_user($user)['id']))!=NULL) //User ID is valid > and logged in It should be: if(external_fud_login(fud_fetch_user($user['id'