Jump to content
  • Posts

    17
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

[email protected]'s Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. C'mon, I hate bumping, but I kinda need this =\ I've tried fixing it further but no luck.
  2. Just rewrite the array without the first 3 elements (the first row). <?php $elements_copy = $elements; for ($i = 2; $i < count($elements); $i++) $elements[$i-2] = $elements_copy[$i]; ?> Or something like that, I didn't exactly look through the whole code, I'm assuming you'd change the variables to whatever suits you.
  3. It supresses any errors that come up.
  4. Use a for loop? <?php for ($j=1; $j <= count($ticket); $j++) { echo ' <td>Ticket Status: '.$ticket['step_status'.$j].'</td>'; } ?> Or something similar to that.
  5. Error messages? oO HTML isn't supposed to produce errors, it just looks at you weird. Uhm, fix your coding habits, they hurt my eyes. And how's this related to PHP?
  6. Then give out an account with less permissions? =]
  7. Is it giving you any errors or what?
  8. Replace <?php echo $history; ?> with '.$history.' (Including quotes and everything)
  9. You could always just make sure no one you don't want to gets permission to do this, so you just need to make sure they're logged in and have the right permissions before letting the delete script actually run. I suggest cookies or session, check if they have the right power to delete, like if they have a certain permission (like moderator) or are the owners of the picture. Or do you mean you have no delete permissions at all?
  10. Sure, it should be... <?php mysql_query("DELETE FROM `pictures` WHERE `picture_id` = 'ID' LIMIT 1"); Don't forget to replace ID with the actual ID or variable that points to it.
  11. Also, looks like you forgot to add the single quote at start, correct me if I'm wrong, <?php if($secret == "89"){ $content .= ' <form id="news" form action="history_edit.php" method="post"> <table width="500" border="0"> <tr> <td colspan="2" class="orangelink"><strong>Update History</strong></td> </tr> <tr> <td width="108">Text</td> <td width="182"><label> <textarea name="history" cols="60" rows="12" class="fields" id="history"><?php echo $history; ?></textarea> </label></td> </tr> <tr> <td colspan="2"><label> <input name="Submit" type="submit" class="fields" id="Submit" value="Submit" /> </label></td> </tr> </table> </form> '; } else $content .= "You Must Be Logged In To Do That."; ?>
  12. Ok, I'm gonna suggest that instead of using explode to get the next ID of the file, I suggest you use $_GET to get it first? Use that again, and to determine the next image, you should SQL query the table to see the next ID you need to get. I'm gonna give an example... <?php // Let's say we use $_GET['id'] for the ID of the image. The URL would be [...]/img.php?id=7 for our example. $id = $_GET['id']; $result = mysql_query("SELECT * FROM `pictures` WHERE `picture_id` = '$id'"); // We'll use mysql_fetch_row to get the current image... $image = mysql_fetch_row($result); // Insert the code to fetch the code you want from the array // And as for the next and previous image... $next = mysql_query("SELECT `picture_id` FROM `pictures` WHERE `picture_id` > '$id' LIMIT 1"); // LIMIT 1 will tell it we only want to get 1 ID that is bigger than the current one (meaning, the next one will automatically be the next ID in the table) $nextlink = mysql_fetch_row($next); // Next link should link to pic.php?id=$nextlink[0] // Same for previous, only with the opposite comparison $prev = mysql_query("SELECT `picture_id` FROM `pictures` WHERE `picture_id` < '$id' LIMIT 1"); $prevlink = mysql_fetch_row($prev); // Link to $prevlink[0] ?> There's probably a better way to do this, but that's the best I can come up with right now =P sorry.
  13. Use if (strlen($array[value]) > 0) To determine if the field isn't empty. (Of course, replace $array with the array, and value with the value.)
  14. Add to the end of the script... print_r($_POST); And tell us what's the output.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.