Questione : chiunque vede una ragione per la quale il mysql non infornerebbe e non echeggierebbe l'Info (forse un typo la mia fortuna)


ciò è probabilmente un typo im del dang che manca appena la mia fortuna
può chiunque vedere una ragione per la quale il codice allegato non sta visualizzando gli echi dell'identificazione, la data, discription, la nota ecc affatto

ottengo
-------------------
identificazione: 2
L'Info record andrà qui

interamente fatto
-------------------
come ritorno e nient'altro

grazie in anticipo per tutto il codice o aiutarlo può fornire

 
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
\n";
echo "Record info will go here
\n"; /* MySQL connection */ $gaSql['user'] = "xxxxxxx"; $gaSql['password'] = "xxxxxxxx"; $gaSql['db'] = "xxxxxx"; $gaSql['server'] = "localhost"; $gaSql['type'] = "mysql"; $gaSql['link'] = mysql_pconnect( $gaSql['server'], $gaSql['user'], $gaSql['password'] ) or die( 'Could not open connection to server' ); mysql_select_db( $gaSql['db'], $gaSql['link'] ) or die( 'Could not select database '. $gaSql['db'] ); $sql = "SELECT id,date_last_updated, description,note,account_owner FROM contacts_personal_notes WHERE `account_owner`='".$_SESSION['user_name']."' AND `contact_id`='".trim($_REQUEST['id'], ",")."' $where $sort $limit";// //echo "sql: ".$sql."
\n"; $result = mysql_query($sql) or die (mysql_errno($connect) . ": " . mysql_error($connect)); while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { echo "inside while
"; echo "id: ".$row['id']."
"; echo "date: ".$row['date_last_updated']."
"; echo "discrip: ".addslashes($row['description'])."
"; echo "note: ".addslashes($row['note'])."
"; echo "owner: ".addslashes($row['account_owner'])."
"; } echo "
all done"; mysql_close(); ?>


dichiarazione di sql
 
1:
sql: SELEZIONARE l'identificazione, date_last_updated, la descrizione, la nota, account_owner dai contacts_personal_notes DOVE “`del account_owner = ' Eric grigio„ E “`del contact_id = ' 2„

Risposta : chiunque vede una ragione per la quale il mysql non infornerebbe e non echeggierebbe l'Info (forse un typo la mia fortuna)

Se stiate ottenendo l'identificazione di 2 sul db allora il pconnect non è il problema poichè sta collegandosi all'approvazione di db (ci possono essere edizioni più tardi con un più alto numero dei collegamenti simultanei senza sintonizzare apache e il mysql comunque).

Dare il seguente un andare, io lo ha cambiato al fetch_row di uso, pulito la dichiarazione prescelta di sql poco (non ha saputo dove i vars di $where ecc sono entrato da comunque, prego controllano questo?), lasciarlo sanno andate con esso,

Secondo il suggerimento degli shinug inoltre ho aggiunto la segnalazione di errore di E_ALL ecc nello scritto che può aiutare un poco.

Le barrette hanno attraversato:)
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
\n";
echo "Record info will go here
\n"; /* MySQL connection */ $gaSql['user'] = "xxxxxxx"; $gaSql['password'] = "xxxxxxxx"; $gaSql['db'] = "xxxxxx"; $gaSql['server'] = "localhost"; $gaSql['type'] = "mysql"; $gaSql['link'] = mysql_pconnect( $gaSql['server'], $gaSql['user'], $gaSql['password'] ) or die( 'Could not open connection to server' ); mysql_select_db( $gaSql['db'], $gaSql['link'] ) or die( 'Could not select database '. $gaSql['db'] ); // OLD: $sql = "SELECT id,date_last_updated, description,note,account_owner FROM contacts_personal_notes WHERE `account_owner`='".$_SESSION['user_name']."' AND `contact_id`='".trim($_REQUEST['id'], ",")."' $where $sort $limit"; // note i didn't know where $where etc were coming from, you may need to alter this again to fit your exact requirements $sql = "SELECT id, date_last_updated, description, note, account_owner FROM contacts_personal_notes WHERE 'account_owner'='".$_SESSION['user_name']."' AND 'contact_id'='".trim($_REQUEST['id'], ",")."' ORDER BY $sort LIMIT $limit";// $result = mysql_query($sql) or die (mysql_errno($connect) . ": " . mysql_error($connect)); $numRows=mysql_num_rows($result); if($numRows > 0) { $row=mysql_fetch_row($result); // can be used if only ever expecting one row to be returned echo "id: ".$row[0]."
"; echo "date: ".$row[1]."
"; echo "description: ".$row[2]."
"; // do 'addslashes' later once this is verified as working echo "note: ".$row[3]."
"; echo "owner: ".$row[4]."
"; } else { echo "No results found.
"; } echo "
all done"; mysql_close(); ?>
Altre soluzioni  
 
programming4us programming4us