Jump to content
php.lv forumi

scripta problema


Puika1

Recommended Posts

Tātad es uzstādiju šo sciptu http://paste.php.lv/069fb9ce060795c7c9ae5e9eabdb5c26/nonum ,bet ņēmos gar datubāzi kautko sačakarēju un beigās izdzēsu chat db,Un iekopēju no kauna tāda kāda bija sākumā,bet kad rakstu zinju čatā viņu nerāda un datubāzē ar nesaglabā,kas varētu būt par problēmu?

datubāze izskatās šādi!

CREATE TABLE `chats` (
`ieraksts` TEXT CHARACTER SET utf8 COLLATE utf8_bin NULL ,
`laiks` DATE NULL ,
`niks` TEXT CHARACTER SET utf8 COLLATE utf8_bin NULL
) ENGINE = MYISAM ; 

Link to comment
Share on other sites

mysql_query("INSERT INTO chats (ieraksts, laiks, niks) VALUES ('$ieraksts','$laiks','$membera_niks')");

uz

mysql_query("INSERT INTO chats (ieraksts, laiks, niks) VALUES ('$ieraksts','$laiks','$membera_niks')") or mysql_error();

Un paradi ko rada?

Link to comment
Share on other sites

Varētu būt starpība starp šo kveriju:

mysql_query("INSERT INTO chats (ieraksts, laiks, niks) VALUES ('$ieraksts','$laiks','$membera_niks')") or mysql_error();

un šo?

mysql_query("INSERT INTO chats (ieraksts, laiks, niks) VALUES ('".$ieraksts."','".$laiks."','".$membera_niks."')") or mysql_error();

Link to comment
Share on other sites

// Konekcija

$selekts = mysql_query("SELECT * FROM ibf_sessions WHERE member_id=".$_COOKIE['member_id']) or mysql_error();
$r = mysql_fetch_array($selekts);
 if(isset($_POST['ierakstiit'])) {
   $ieraksts = $_POST['ieraksts'];
   $laiks = time();
   $membera_niks = $r['member_name'];
   mysql_query("INSERT INTO chats (ieraksts, laiks, niks) VALUES ('$ieraksts','$laiks','$membera_niks')") or mysql_error();

}

if($_COOKIE['member_id'] = 0) {
 echo '
<form action="" method="post">
<input type="text" name="ieraksts" />
<input type="submit" name="ierakstiit" />
</form>
 ';
}

$dati = mysql_query("SELECT * FROM chats ORDER BY laiks DESC LIMIT 20 ") or mysql_error();
$er = mysql_fetch_array($dati);
 echo "<font style=\"color:green;\">".$er['niks']."</font><br>";
 echo $er['ieraksts']."<br />";

un kā ar šo?

Edited by false
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...