Jump to content

teamatomic

Members
  • Posts

    1,202
  • Joined

  • Last visited

About teamatomic

  • Birthday 08/09/1955

Contact Methods

  • Website URL
    http://www.myeasyweather.com

Profile Information

  • Gender
    Male
  • Location
    Big Sky,MT

teamatomic's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. if you keep you notices in a table then store the ID of closed notices in another table then- when you grab the notices to display use UNIQUE to display only wanted notices HTH Teamatomic
  2. Put the cats into an array then store the array in a session var. Then you can write a function that will build a category list where ever you wish. HTH Teamatomic
  3. You can put the evaluation code at the start of the commit.php page. That way if the data is not valid you can just redirect via a header() back to the form page passing an error message with the url as a get. Pretty simple to do and easy to understand. HTH Teamatomic
  4. Do what it says, put the directive in a php.ini file and see what happens. HTH Teamatomic
  5. Put the user into an array and then use array_rand($array, $number_needed); HTH Teamatomic
  6. From a quick glance at your page source try going from strict to transitional: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> HTH Teamatomic
  7. Put them into a multi array and array_shift and array-push each week. HTH Teamatomic
  8. Why dont you just convert it to inches? then you can compare and when you want to display just divide by 12 and use the modulus. $num=145; $ft=floor($num/12); $inch=$num%12; echo "$ft'$inch\"";//12'1" HTH Teamatomic
  9. put the data into a session var and use it from there. HTH Teamatomic
  10. When a user logs in you usually do something like set their username or similar in a session var. Just check if that var isset and if it is show the image. HTH Teamatomic
  11. Try: header("Location: index.php?$gets&phpsession=$phpsession"); HTH Teamatomic
  12. Say you have a link for cakes. change it to use http://domian.com/cakes.php?landing=cakes then where the code you want to change is do this: $landing=$_GET['landing']; if($landing != '') { include("/path/to/landing/templates/$landing.php"); } else { include("/path/to/landing/templates/$default.php"); } [code] HTH Teamatomic
  13. If you dont want a password to be used then use a anonymous FTP and all you need to pass is any old email address. If that is not acceptable then you will want to figure out a way without using FTP. HTH Teamatomic
  14. <meta http-equiv="refresh" content="time_in_seconds"> HTH Teamatomic
×
×
  • 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.