Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Lalli
  • Order by date
  1. Lalli

    Can anyone recommend a PHP editor?

    Check SciTE: http://www.scintilla.org/SciTE.html (simple but nice) and HTML-Kit http://www.chami.com/html-kit/ (Very useful and powerful) -Cursed
  2. Lalli

    Passing through a login page

    Check these: http://www.zend.com/zend/tut/authentication.php and http://www.zend.com/zend/tut/tutorial-delin4.php or use Google... -Cursed
  3. Lalli

    date addition

    Check http://www.mysql.com/doc/en/Column_types.html for column types... INT is good choice for storing seconds passed since 1970... To add one year to TIMESTAMP-type, use ADDDATE or DATE_ADD (they are same) functions...(check http://www.mysql.com/doc/en/Date_and_time_functions.html for more...
  4. Lalli

    Whats the PHP equivalent of $string${otherstring} ??

    try something like: while ($count < 99) { $varName = 'year' . $count; $result = $GLOBALS[&quot;varName&quot;]; $count++; } or: while ($count < 99) { $varName = 'year' . $count; $result = ${$varName}; $count++; } Please correct me if I'm wrong... -Cursed

Part and Inventory Search

Back
Top