Search found 44 matches
- Tue Jun 13, 2006 5:23 pm
- Forum: PHP - Code
- Topic: Pulling Contents from a file
- Replies: 9
- Views: 1658
- Tue Jun 13, 2006 5:19 pm
- Forum: PHP - Code
- Topic: PHP Remote Form Help
- Replies: 11
- Views: 1925
- Mon Jun 12, 2006 2:33 pm
- Forum: Databases
- Topic: Problems with ORDER BY
- Replies: 4
- Views: 1274
- Mon Jun 12, 2006 9:54 am
- Forum: PHP - Code
- Topic: Value of last row of query??
- Replies: 8
- Views: 2741
- Mon Jun 12, 2006 9:51 am
- Forum: Databases
- Topic: PHP used with Oracle
- Replies: 1
- Views: 817
- Mon Jun 12, 2006 9:46 am
- Forum: PHP - Code
- Topic: Value of last row of query??
- Replies: 8
- Views: 2741
- Mon Jun 12, 2006 9:41 am
- Forum: PHP - Code
- Topic: htaccess
- Replies: 8
- Views: 1402
- Mon Jun 12, 2006 4:03 am
- Forum: Databases
- Topic: Problems with ORDER BY
- Replies: 4
- Views: 1274
- Mon Jun 12, 2006 3:42 am
- Forum: PHP - Code
- Topic: $_FILES submit hanging
- Replies: 4
- Views: 2218
- Mon Jun 12, 2006 3:39 am
- Forum: PHP - Code
- Topic: Unload an extension
- Replies: 7
- Views: 2731
Only if the extension has an attribute for that.
Like:
extension.bla_enabled = 0/1 in php.ini
Then you can set it in runtime by:
Like:
extension.bla_enabled = 0/1 in php.ini
Then you can set it in runtime by:
Code: Select all
ini_set("extension.bla_enabled", "0");- Sun Jun 11, 2006 6:54 pm
- Forum: PHP - Code
- Topic: $_FILES submit hanging
- Replies: 4
- Views: 2218
- Sun Jun 11, 2006 6:53 pm
- Forum: PHP - Code
- Topic: problem with session_start()
- Replies: 7
- Views: 1857
and what about this: <?php session_start(); function Login($username, $password) { // If user was in the middle of filling out new account form, // and decided to login, then clear all the junk the user filled out. if ($_SESSION['signup_account']) { session_start(); session_destroy(); // line 11 } }...
- Sun Jun 11, 2006 5:28 pm
- Forum: Databases
- Topic: Problems with ORDER BY
- Replies: 4
- Views: 1274
Problems with ORDER BY
Yes, I have some issues with ORDER BY. First my code: if(isset($_POST['viewlist'])) { $orderby = $_POST['orderby']; $ascdesc = $_POST['ascdesc']; @mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS) OR die(mysql_error()); mysql_select_db(MYSQL_DATABASE) OR die(mysql_error()); $sql = "SELECT * FRO...
- Sun Jun 11, 2006 4:34 pm
- Forum: PHP - Code
- Topic: Item Handling with Database [SOLVED]
- Replies: 15
- Views: 3316
- Sun Jun 11, 2006 3:46 pm
- Forum: PHP - Code
- Topic: Item Handling with Database [SOLVED]
- Replies: 15
- Views: 3316