Searched refs:note (Results 1 – 9 of 9) sorted by relevance
/web-master/entry/ |
H A D | svn-account.php | 12 if (empty($name) || empty($email) || empty($username) || empty($passwd) || empty($note) || empty($g… 74 $note = hsc($note); variable 82 [$new_id, "$note [group: $group]"] 85 $msg = $note; 105 "Purpose: $note",
|
H A D | user-note.php | 26 $note = filter_input(INPUT_POST, "note", FILTER_UNSAFE_RAW); variable 31 if (empty($user) || empty($note) || empty($sect) || !$ip) 36 $note_lc = strtolower($note); 92 "Note : $note", 105 if (db_query_safe($query, [$user, $note, $sect])) { 107 $msg = $note;
|
/web-master/scripts/ |
H A D | update-user-notes | 63 list($id,$sect,$rate,$ts,$user,$note,$up,$down) = explode("|",$line); 78 if (strlen($note) == 0) { 79 echo "note id $note is broken"; 81 $note = gzuncompress(base64_decode($note)) or die ("$id failed\n"); variable 82 fputs($nf, "$id|$sect|$rate|$ts|$user|" . base64_encode($note) . "|$up|$down\n"); 84 fputs($bz, "$id|$sect|$rate|$ts|$user|" . base64_encode($note) . "|$up|$down\n");
|
/web-master/fetch/ |
H A D | user-notes-rss.php | 65 <title><?php echo htmlspecialchars(substr($note['note'], 0, 40)); 66 echo strlen($note['note']) < 40 ? '...' : ''; ?></title> 70 <?php echo htmlspecialchars($note['note']); ?>
|
/web-master/ |
H A D | note.sql | 1 /* the note table holds notes for the php manual. */ 10 master.php.net/entry/user-note.php 16 CREATE TABLE IF NOT EXISTS note ( 20 note text,
|
H A D | users.sql | 58 note text, field 60 FULLTEXT KEY note (note)
|
/web-master/manage/ |
H A D | user-notes.php | 577 $note = (isset($_POST['note']) ? $_POST['note'] : null); variable 578 if (!isset($note) || $action == 'preview') { 587 if (isset($note) && $action == "edit") { 588 … SET note=?,user=?,sect=?,updated=NOW() WHERE id=?', [html_entity_decode($note,ENT_QUOTES), $email… 593 $note."\n\n--was--\n{$row['note']}\n\nhttp://php.net/manual/en/{$row['sect']}.php" 596 …from $row[sect] to $sect by notes editor $cuser", "----- Copy of your note below -----\n\n".$note); 603 $note = isset($note) ? $note : $row['note']; variable 606 echo "<p class=\"notepreview\">",clean_note($note), 623 <td colspan="2"><textarea name="note" cols="70" rows="15"><?= hsc($note) ?></textarea></td>
|
/web-master/include/ |
H A D | email-templates.inc | 21 Please note: Before you can push to our repositories, please add your 32 with your VCS account, feel free to send us a note at $mailtext. 41 Feel free to send us a note at group@php.net to find out why this
|
H A D | functions.inc | 283 $res = db_query_safe("SELECT note FROM users_note WHERE userid = ? LIMIT 1", [$id]); 286 if (preg_match("/\[group: (\w+)\]/", $row["note"], $matches)) {
|
Completed in 12 milliseconds