Search Results

5
votes

Encoding JSON for jQuery Calendar

You're echoing each string separately, so json_encode never knows it's a list. You could change your while statement to build up the list: while($row = $result->fetch_arr …
1
vote

Can I get feedback on this PHP function that tests if a user has signed up?

Try this: $conn = get_db_conn(); # should reuse a connection if it exists # Have MySQL count the rows, instead of fetching a list (also prevent injection) $res = mysql_query(sprint …