Jump to content

kdigital

Members
  • Posts

    16
  • Joined

  • Last visited

kdigital's Achievements

Member

Member (2/5)

0

Reputation

  1. How is this achieved? I have a php image gallery that uses horizontally scrolling. It looks cool, here is the tutorial http://css-tricks.com/how-to-create-a-horizontally-scrolling-site/ But my images are all horizontal. How do I make the divs stack up on each other like this? The vertical scroll is still disabled even when the image is resized. https://myspace.com/cuppycake23/photos
  2. Oh ok I see. When the browser saves the password when you open the page you still have to press the login button, verses remember me which just logs you in.
  3. Are these obsolete? I mean modern browsers provide the same option when logging in. Thoughts?
  4. I've actually learned a lot by paying people to fix my code lol. It's the best way to learn to me. Figure out what you want to do and pay someone for it. Make sure they leave plenty of notes.
  5. Don't worry about it. Posting this as a job on Odesk. Not going to waste anymore time on coding forums waiting hours and hours for help. I'd rather pay a programmer to code with good notes than post on forums for help and wait for hours for a good response all while crossing my fingers.
  6. $sql = "SELECT * FROM messages WHERE to_user_id='$to_user_id' LIMIT $offset, $rowsperpage"; $result = mysql_query($sql) or trigger_error("SQL", E_USER_ERROR); if (empty($numrows)) { $totalpages = 1; $error = 'You don\'t have any messages'; } echo "<br />"; echo "$error" . "<br />"; echo "<br />"; echo '<form action="my_messages.php?from_user_id="$from_user_id"" method="POST">'; echo "<div style=\"float:left; margin-left:5px;\"><input type=\"submit\" name=\"delete\" id=\"button\" value=\"delete\"/></div>"; echo "<table width=980><tr> <td></td><td><b>From</b></td> <td width=120></td> <td width=120><b>Subject</b></td> <td width=120></td> <td width=120>Date Sent</td> <td width=120></td> <td width=120></td> <td width=120></td></tr>"; //Fetch data while($row = mysql_fetch_assoc($result)) { //$to_user_id = $_SESSION['id']; if (isset($_POST['delete'])) { $msg = $_POST['msg']; //$from_user_id = $_POST['from_user_id']; $from_user_id = $_GET['from_user_id']; $query = mysql_query("DELETE FROM messages WHERE from_user_id='$from_user_id'"); } echo "<tr> <td><input type=\"checkbox\" name=\"msg\" value=\"".$row["from_user_id"]."\"></td> <td>".$row['from_user']."</td> <td></td> <td>".$row['subject']."</td> <td width=300></td> <td>".$row['date_sent']."</td> <td></td> <td></td> <td></td> <td></td></tr>"; } echo "</form></table>";
  7. I have 2 projects in Netbeans that use the same database. If I log into either one of my php apps, it shows me logged into both projects.
  8. I found it http://www.convergent-evolution.co.uk/resources/jquery-plugins/scrolling-carousel/
  9. http://wearehunted.com/a/#/emerging/ Can it be done in css? Any tutorials?
  10. Hello, the following code works for all of my other selects but not the one for height. I know it has something to do with the quotes and HTML symbols. Does anyone know how to fix this? Thanks. <option <?php if(isset($_POST)){if($_POST == "5'0""){echo "selected";}} ?> value="5'0"">5'0"</option>
  11. Guys is there some trick to doing this? My stylesheet will not load. The path is correct, it's the same path as my regular stylesheet. I'm using HTML 5 if that means anything. <link href="css/smokey_styles.css" rel="stylesheet" type="text/css" /> <!--[if gt IE 5.5]> you're using Internet explorer <link href="css/smokey_styles_IE.css" rel="stylesheet" type="text/css" /> <![endif]--> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
  12. I did this site for a client and can not figure out what's going on with the fonts in my nav and footer in Chrome. The font weight changes when you navigate to other pages. Anyone know what's going on? smokeyjoesribshack.com
  13. See the demo here. http://img.usabilitypost.com.s3.amazonaws.com/1104/css_slideout/index.html? My code instructs my footer to slide up automatically when the page loads. This is done completely in CSS3. However, when I click my login button it bypasses all of my php checks and just reloads the page again, playing my CSS3 animations over again. Do you guys know a workaround? If you click his submit button it does the same thing. I know it reloads the page because of this in my code form action=""
  14. I need read and sent options also. You've never seen an inbox with pagination? Thanks for the link on pagination by the way. I'm going to try this myself today since finding a tutorial that teaches you to build one like the ones on popular social media sites is like finding the Philosophers Stone.
×
×
  • 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.