Jump to content

bmdsherman

Members
  • Posts

    40
  • Joined

  • Last visited

    Never

Everything posted by bmdsherman

  1. I know that normally, but I have a php file that usually takes around 10 seconds to execute and I was wondering if I have to sit around an wait, or just call the page and close my browser.
  2. http://us3.php.net/manual/en/function.fopen.php
  3. Here is a tutorial for what I think your trying to say: http://www.w3schools.com/TAGS/tag_map.asp
  4. I have a question and I'm not exactly sure which board this should go in. If I navigate to a php file and stop loading the page before the script finishes executing, does the script continue to execute or does it stop?
  5. Thanks, I guess I just needed to take a break from coding and go back to that with fresh eyes.
  6. I can't get this form button to work in IE. <form method="post" action="checkuser.php" name="form"> <table border="0" cellpadding="1" cellspacing="4" align="center"> <tr> <td>Email Address:</td> <td><input name="email_address" type="text" value="<?php echo"$email";?>" id="email_address"></td> </tr> <tr> <td>Password:</td> <td><input name="password" type="password" value="<?php echo"$password";?>" id="password"></td> </tr> <tr> <td>Remember Me:</td> <td><input name="cookie" type="checkbox" checked="checked"></form></td> </tr> <tr> <td> </td> <td><input type="submit" name="Submit" value="Login"></td> </tr> </table> </form>
  7. Hello, I have a mysql database that contains a list of photos, there url, and a description of people in the photo. I want also show people, (people are stored in a separate database and each person has a unique #), could I simply add a field called people and if person 1 2 and 3 where in a photo simply have 1, 2, 3 in the mysql row? How would I display something in a users profile saying "I'm in this photo, this photo and this photo?" Sorry if its hard to understand what I'm asking, I'm in a rush and will clear up my question later.
  8. I'm sorry, I didn't realize that was what you where looking for. You should be careful when putting variables in the url, anybody can edit them. For example if you had a login script you wouldn't want to send somebody to http://url.com/login.php?login=successfull?type=user because somebody could easily change that to http://url.com/login.php?login=successfull?type=admin
  9. www.example.com/chmod.php?mode=force
  10. I have a variable, $photo, that is equal to 1.jpg, I want to remove the ".jpg" part from the variable so the variable is only "1", does anybody know how I can do that?
  11. I have 9 flash files named 1.swf, 2.swf, 3.swf, and so on. I was wondering if there is a script I can use to play all of them in order?
  12. Is there any way I can use .htaccess to only allow people who are "logged in" (having a registered php session) to see the files in a directory?
  13. Is there any kind of script that will display an image as soon as I enter the source of that image into a form field?
  14. My web host puts this script at the end of my website: <!-- www.000webhost.com Analytics Code --> <script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script> <noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript> <!-- End Of Analytics Code --> is there any way I can stop the page from loading before I get to that code?
  15. How can I make something like this work? <?php if(!stristr($haystack[0], $needle, $needle2, $needle3............)){ Thanks for the help!
  16. Delta airlines is literally bankrupt. As a matter of fact, Delta Airlines failed bankruptcy back in the dark ages (like 5 years ago) so be wary if you make that statement larger or whatever. Yes, but still Delta Airlines is a huge organization, they don't hand out these recommendations.
  17. I don't think that you want a to professional looking server for this. Ps. I'm not on the market for a smtp server or whatever this is, but that fact that Delta Airlines recommended you guys, really made me take your product seriously, you might want to make that a little bigger.
  18. I see what you're saying, but the first line of content on the page is 'Aquitaine Group Limited is a truly independent Guernsey based fiduciary services group.'. Yes, but you need to let people know what your site is about within the first 2 seconds, by the time they start reading that article, you've lost them, you have plenty of empty real estate next to the picture of the building, USE IT! ps: I love your logo at the top left of the page, that weird thing over the tail of the "Q" really looks professional.
  19. Its alright, I think the sign-up form should go at the top, and what about displaying a random customer feedback article each time the the page loads?
  20. Looks good, but I can tell you used a template, the building looks like one that came with the template, not yours. Remember, people are lazy you need to make it clear that you are a fiduciary services group, announce it in big letters in the center of your page.
  21. Ya I know I'm cheating but I'm using double quotes for the php echo because variables aren't picked up in single quotes. Thanks for your help!
  22. Hmm, what about with php? The code around the image is: <?php while($row = mysql_fetch_assoc($result)){ echo "<center> <table border='0' cellspacing='2' cols='2' frame='void' rules='none'> <colgroup> <col width='350'> <col width='350'> <col width='350'> </colgroup> <tbody> <tr> <td><center><a href=profile.php?p={$row['id']}>{$row['fname']} {$row['lname']}</a></center></td> <td><center><a href=mailto:{$row['email']}>{$row['email']}</a></center></td> <td><center><img src={$row['img']}></center></td> </tr> </tbody> </table>"; }
×
×
  • 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.