Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. So what's the problem? Can we see your code? We need a little more information cause right now all I can say is that you need a query to check to see if that user_name is logged in. You could even use sessions.
  2. You need to use a javascript function: function popitup(url) { newwindow=window.open(url,'terms','height=650,width=700,resizable=yes'); if (window.focus) {newwindow.focus()} return false; } Then call your hyperlink like this: Terms
  3. Please read the support for this disabled in the W3 Schools. The disabled you're doing is only supported as of IE 8.0. I think you need to do the non xhtml version which would be: Mercedes
  4. I went to the site and didn't see anything about a design pattern. All I saw was a list of books. Am I missing something?
  5. Put this at the top of your page: ini_set ("display_errors", "1"); error_reporting(E_ALL); You should also echo out all of your variables to make sure they have the correct values.
  6. Exactly. The only way to learn is to get your hands dirty. What you would probably have to do is scrape the stock market sites and grab the actual numbers so you can update the most recent quotes or w/e.
  7. How does this make a triangle?
  8. What exactly are you trying to accomplish?
  9. 1 - English. I speak a lot of Spanish, but not enough to be fluent.
  10. When you grab the data you need to use the explode() function so you can get each piece using the comma as a delimiter. For the query part I'm going to need more details...
  11. That's the point of the while loop. So however many months you have in the database is how many tables are going to be generated.
  12. True, but he wants ideas and we're giving it to him. Actually he suggested it...
  13. I agree, especially with nothing in there yet, looks ginormous. Also, the gradients above the header hurt my eyes. >
  14. So call the function on the query return.
  15. That can only mean one thing... it's your site!
  16. Is your date in date_time format? Cause that would be easy to compare the month with the year. Also, if you want that format, put it in then... </pre> <table> </
  17. while ($row = mysql_fetch_array($result)) { ?> </pre> <table> </table> <b Does this help?
  18. I haven't tested mine but I think it will add the rd, th, etc... correctly.
  19. Damnit! In that case just do what CW suggested, add 1...
  20. Are you basically trying to display all the months, then under each month have the data for it? Like:
  21. Cause he wants it in format 2nd, 3rd, 4th etc...
  22. $displayday = date("jS", strtotime($_POST['day']+1)); echo $displayday; ?
  23. You would be better off making these lines HTML rather than PHP because you have so much more HTML. You need to look at some basic syntax for this because your code a all over the place. Try it, post it, and we'll correct it. echo </pre> <form action="'.basename(%24_SERVER%5B'PHP_SELF'%5D).'" method="POST"> echo ''; echo " " echo " " echo "" echo "</form>"<br>e
  24. Yes, you're right. Sorry Ashkiaa you should change the query to what dennis proposed.
×
×
  • 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.