Searched refs:row (Results 1 – 14 of 14) sorted by relevance
/web-master/manage/ |
H A D | user-notes.php | 276 $id = isset($row['id']) ? $row['id'] : null; 278 if (isset($row['up']) && isset($row['down'])) { 279 $rating = isset($row['arating']) ? $row['arating'] : ($row['up'] - $row['down']); 292 $percentage = round(($row['up'] / ($row['up'] +$row['down'])) * 100); 313 $row['ts'] = date('Y-m-d H:i:s', $row['ts']); 315 $row['hostip'] = long2ip($row['hostip']); 316 $row['ip'] = long2ip($row['ip']); 317 $notelink = "http://php.net/{$row['sect']}#{$row['note_id']}"; 535 "note {$row['id']} approved from {$row['sect']} by $cuser", 553 "note {$row['id']} $action_taken from {$row['sect']} by $cuser", [all …]
|
H A D | event.php | 294 while ($row = mysql_fetch_array($res,MYSQL_ASSOC)) { variable 297 <td align="center"><a href="<?php echo PHP_SELF . "?id=$row[id]";?>">edit</a></td> 298 <td><?php echo html_entity_decode($row['sdato'],ENT_QUOTES);?></td> 299 <td><?php echo html_entity_decode($row['sdesc'],ENT_QUOTES);?></td> 300 <td><?php echo html_entity_decode($row['email'],ENT_QUOTES);?></td> 301 <td><?php echo html_entity_decode($row['cname'],ENT_QUOTES);?></td> 302 <td><?php echo html_entity_decode($cat[$row['category']],ENT_QUOTES);?></td> 305 if ($full && $row['ldesc']) {?> 307 <td></td><td colspan="5"><?php echo html_entity_decode($row['ldesc'],ENT_QUOTES);?></td>
|
H A D | challenge-response.php | 26 while ($row = mysql_fetch_row($res)) { variable 27 $inmates[] = $row[0];
|
/web-master/fetch/ |
H A D | events.php | 35 foreach($entries[$i] as $row) { 37 addslashes($row['sdesc']) . '",' . 38 $row['id'] . ',"' . base64_encode($row['ldesc']) . '","' . 39 $row['url'] . '",' . $row['recur'] . ',' . 40 $row['tipo'] . ',' . $row['sdato'] . ',' . 41 $row['edato'] . ',' . $row['category'] . "\n"; 112 switch($row['tipo']) { 117 $events[(int)$dd][] = $row; 126 $events[$i][] = $row; 130 $events[$i][] = $row; [all …]
|
H A D | user-notes.php | 37 while($row = $stmt->fetch(PDO::FETCH_ASSOC)) { variable 38 $user = $row['user']; 39 $row['rate'] = empty($row['rate']) ? 0 : $row['rate']; 48 echo "$row[id]|$row[sect]|$row[rate]|$row[ts]|$user|", 49 base64_encode(gzcompress($row['note'],3)),"|$row[up]|$row[down]\n";
|
H A D | cvsforwarding.php | 13 while ($row = @mysql_fetch_array($res)) { variable 14 echo "$row[username]@php.net: ", 15 ($row['spamprotect'] ? "|/local/bin/automoderate," : ""), 16 "$row[email];\n"; 17 echo "$row[username]@pair2.php.net: ", 18 ($row['spamprotect'] ? "|/local/bin/automoderate," : ""), 19 "$row[email];\n";
|
H A D | user-notes-rss.php | 30 while ($row = mysql_fetch_array($res, MYSQL_ASSOC)) { variable 31 $notes[$row['id']] = $row;
|
/web-master/ |
H A D | forgot.php | 26 if ($res && ($row = mysql_fetch_array($res,MYSQL_ASSOC))) { 27 return $row["username"]; 69 if ($res && ($row = mysql_fetch_array($res,MYSQL_ASSOC))) { variable 72 $res = db_query_safe($query, [$newpass, $row['userid']]); 91 $row['username'] . '@php.net', 92 "Password change instructions for $row[username]", $body,
|
H A D | users.sql | 63 /* the users_profile table contains up to one profile row for each user */
|
/web-master/scripts/ |
H A D | email-note-summaries | 19 while ($row = mysql_fetch_array($res,MYSQL_ASSOC)) { variable 20 $body .= sprintf("%5d | http://php.net/manual/en/%s.php\n", $row['count'], $row['sect']); 21 $top20 += $row['count'];
|
/web-master/include/ |
H A D | cvs-auth.inc | 18 $row = mysql_fetch_array($res); 19 return gen_svn_pass($user, $pass) === $row["svnpasswd"];
|
H A D | functions.inc | 236 while ($row = mysql_fetch_assoc($res)) { 237 …echo "<option value=\"{$row['id']}\"", $cc == $row['id'] ? " selected" : "", ">{$row['name']}</opt… 284 $row = mysql_fetch_assoc($res); 286 if (preg_match("/\[group: (\w+)\]/", $row["note"], $matches)) {
|
/web-master/.phan/internal_stubs/ |
H A D | mysql.phan_php | 338 * @param int $row <p> 380 * Get a result row as an enumerated array 427 * Fetch a result row as an associative array 447 * Fetch a result row as an object 459 * fetched row, or false if there are no more rows. 462 * mysql_fetch_row fetches one row of data from 869 * @param int $row <p> 885 * @param $row 890 function mysql_dbname ($result, $row, $field) {} 900 * The integer index (row/table number) [all …]
|
/web-master/vendor/michelf/php-markdown-extra/ |
H A D | markdown.php | 2392 foreach ($rows as $row) { 2395 $row = $this->parseSpan($row); 2398 $row_cells = preg_split('/ *[|] */', $row, $col_count);
|
Completed in 22 milliseconds