Log in

View Full Version : My bad coding.


dstruct2k
06-24-2004, 05:50 AM
I guess I need sleep... This code looks right to me, but PHP isn't liking it.



Note: The list I'm altering is SPACE delimited. List looks like this:1 15 51 68 91

assassingod
06-24-2004, 05:56 AM
What the problem you are receiving?

Xenon
06-24-2004, 12:19 PM
instead of:
$data = str_replace("$userid", " ", "$data");
$data = str_replace(" ", " ", "$data");


you might want to use that (as userid's can have more than just one number ;)

$data = str_replace(" $userid ", ' ', " $data ");
$data = trim(str_replace(' ', ' ', $data));

dstruct2k
06-25-2004, 05:38 AM
Thanks, Xenon, but the first and last ID won't be surrounded by spaces, will this be able to use those too?


Plus -- My queries aren't working. Returning:Fatal error: Call to a member function on a non-object in /forums/includes/functions_vbevents.php on line 17

dstruct2k
06-25-2004, 05:52 AM
Nevermind... Forgot to global $DB_site. ;)

Xenon
06-25-2004, 11:45 AM
Yes, as you can see i added spaces around the $data in the replace function, so it will work :)