Searched refs:sect (Results 1 – 6 of 6) sorted by relevance
/web-master/fetch/ |
H A D | user-notes-rss.php | 18 $sect = explode(',', $_GET['section']); variable 19 for ($i=0; $i<count($sect) - 1; $i++) { 20 $query->add('? OR sect LIKE ', [strtr($sect[$i],'*','%')]); 22 $query->add('?', [strtr($sect[count($sect) - 1],'*','%')]); 76 <dc:subject><?php echo htmlspecialchars($note['sect']); ?></dc:subject>
|
/web-master/entry/ |
H A D | user-note.php | 27 $sect = filter_input(INPUT_POST, "sect", FILTER_SANITIZE_STRIPPED, FILTER_FLAG_STRIP_HIGH); variable 31 if (empty($user) || empty($note) || empty($sect) || !$ip) 91 "Section: $sect\n" . 99 $sect = trim(preg_replace('/\.php$/','',$sect)); variable 105 if (db_query_safe($query, [$user, $note, $sect])) { 144 …mail($mailto,"note $new_id added to $sect",$msg,"From: $user\r\nMessage-ID: <note-$new_id@php.net>…
|
/web-master/scripts/ |
H A D | update-user-notes | 63 list($id,$sect,$rate,$ts,$user,$note,$up,$down) = explode("|",$line); 65 $hash = substr(md5($sect),0,16); 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/ |
H A D | note.sql | 18 sect varchar(80) NOT NULL default '', 28 KEY idx_sect (sect)
|
/web-master/manage/ |
H A D | user-notes.php | 585 $sect = (isset($_POST['sect']) ? html_entity_decode($_POST['sect'],ENT_QUOTES) : $row['sect']); variable 588 …=?,sect=?,updated=NOW() WHERE id=?', [html_entity_decode($note,ENT_QUOTES), $email, $sect, $id])) { 595 if ($row["sect"] != $sect) { 596 …note_mail_user($email, "note $id moved from $row[sect] to $sect by notes editor $cuser", "----- Co… 616 <td><input type="text" name="sect" value="<?= hsc($sect) ?>" size="30" maxlength="80" /></td>
|
/web-master/include/ |
H A D | functions.inc | 49 … "/manage/user-notes.php", "placeholder" => "Search notes (keyword, ID or sect:)", "name" => "keyw…
|
Completed in 17 milliseconds