Tagged Questions

1
vote
7answers
824 views

$(a,this).attr('href') returns undefined

Im using ajax to load some data from a mysql database... my problem is, it getting the id for the data i want to load, i have set the HREF value as the id... so an example is: `<a href="16" ...
0
votes
2answers
27 views

Undefined function in mysql and php

This page will delete a post: require_once ('db.php'); $db = new DB(); $db->deletePost($_GET['id'], $_GET['postType']); db.php only contains a class which called DB and its functions. this is a ...
0
votes
1answer
82 views

PHP Fatal Error Call to Undefined Method…that I'm 99% sure is defined

session.php include("database.php"); function addPOTW($subweek, $subtitle, $subcaption, $subsubmittedby) { global $database, $form; /* Errors exist, have user correct them */ if ...
0
votes
0answers
52 views

XML returns as undefined from AJAX call

Any help appreciated in advance.... I have been trying to get a JavaScript to use AJAX to call a PHP script to read from an MySQL database and write out an XML DOM document so that I can add markers ...
0
votes
6answers
79 views

Error: undefined index?

I get this array from a function (var_dump()): ...{ [0]=> string(7) "user_id" } [1]=> array(1) { [0]=> string(7) "user_id" } [2]... When I try to separate the values with: $var2 = ...
0
votes
2answers
233 views

Why am I getting this? Use of undefined constant connection - assumed 'connection'

I am developing on a Mac OSX 10.5 in the MAMP environment. My PHPadmin shows that the database and table exist just fine, however when I try to execute a connection I get this: NOTICE: Use of ...
0
votes
3answers
337 views

Undefined variable in PHP when referencing MySQL element

Edit: I solved the problem! It was an issue unrelated to the code that I posted - I had an exit command in the script - but all of your advice still helped in other ways. I'm trying to automatically ...
0
votes
2answers
319 views

Mysql++ “undefined reference to __imp___ZN7mysqlpp10ConnectionC1Eb”

I am trying to install the mysql++ in Code::Blocks, but When I try to run the example code I get this error: undefined reference to __imp___ZN7mysqlpp10ConnectionC1Eb What I am doing wrong?