Jump to content

The Spook

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Everything posted by The Spook

  1. Also, you can store arrays in a database with JSON (req PHP 5.2+ or JSON lib). $array = array("some", "random", "text"); $sql = "INSERT INTO table (column) VALUES ('".mysql_real_escape_string(json_encode($array))."')"; And to retrieve the value back into an array: $result = mysql_query("SELECT column FROM table WHERE ID=1"); $row = mysql_fetch_array($result); $array = json_decode($row['column']); print_r($array);
  2. PSpad is pretty good - it also has the FTP support like DreamWeaver.
  3. You can download a standalone version of IE6 here: http://browsers.evolt.org/download.php?/ie/32bit/standalone/ie6eolas_nt.zip
  4. There are lots of zipping examples online: http://www.devco.net/archives/2005/05/24/creating_zip_files_with_php.php http://www.granthinkson.com/2005/07/01/create-zip-files-dynamically-using-php/ Creating a Word doc might prove to be more difficult unless you're hosting on Windows: http://stackoverflow.com/questions/124959/create-word-document-using-php-in-linux http://www.joelonsoftware.com/items/2008/02/19.html
  5. Well, you could use a plugin to allow inline execution of PHP on pages, or you can create a page template in your themes folder.
×
×
  • 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.