Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. I'm sorry, but your post makes no sense at all to me.
  2. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=325444.0
  3. You say you have some programming knowledge. Take a step back and look at your logic. You are over complicating things. You are checking your paths for a url... why? You know its a url because you have pre-pended your domain name to the head of the string. You don't need any of that, get rid of it.
  4. This topic has been moved to PHP Regex. http://www.phpfreaks.com/forums/index.php?topic=325430.0
  5. This topic has been moved to PHP Regex. http://www.phpfreaks.com/forums/index.php?topic=325429.0
  6. This topic has been moved to Ajax Help. http://www.phpfreaks.com/forums/index.php?topic=325435.0
  7. Separate the with "\r\n" within the 'header' index.
  8. Read your posts back. Do you really think you have provided enough information for someone to be able to understand your problem and help you?
  9. Those variables are not defined anywhere. I'm really not sure what you think your doing.
  10. We can't help you without seeing the relevant code either.
  11. Where exactly are these variables defined? <div id="wrestler-info"><p><span class="rostername"><a class="biolinks" href="/bio?username=<?php echo $shortName ?>"><?php echo $characterName ?></a></span><br /> Height: <?php echo $singlesheight ?><br /> Weight: <?php echo $singlesweight ?><br /> Hometown: <?php echo $singleshometown ?><br /></p> </div> Assuming of course they are what your talking about.
  12. If the properties are public they are already available.
  13. Functions are used to encapsulate code, using globals breaks encapsulation.
  14. You shouldn't be using globals with functions in the first place.
  15. options is not an array, it is an object. series is however an array with one element, another object. You would need to use.... options.series[0].data.push(point);
  16. This is normal functionality. Databases do not store data in a particular order. You need to use ORDER BY to retrieve data in a specific order, and you should not rely upon an auto incrementing field for sorting.
  17. You might want to mention the framework your using, your post is pretty vague.
  18. This topic has been moved to PHP Applications. http://www.phpfreaks.com/forums/index.php?topic=325339.0
  19. Cool. Now your queries are more vulnerable. I suggest your read kenrbnsn's reply again.
  20. The first thing I would do is start using the complete <?php tags, not just <?. The later has been deprecated. Secondly, remove all the error suppression @ and add some debugging. After doing so, are you getting any errors?
  21. nl2br should be used on the way out of a database. You shouldn't manipulate data on the way in.
  22. This topic has been moved to Ajax Help. http://www.phpfreaks.com/forums/index.php?topic=325315.0
×
×
  • 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.