Latest Answer: Select c.id, m.catogory_name from catogorymaster m, child c where m.catid = c.id; ...
Latest Answer: A form in Javascript can be submitted using document.formname.submit(); Other functions like PHP's header("location :$url"); is transfering control from one page to another. It is not submitting form. In Javascript, ...
Latest Answer: USE this code (It can NOT be simpler than this) -$file = fopen("counter.txt", ’a+’);if ($file == false) { die ("Unable to open/create file");}if (filesize("counter.txt") == 0) { $counter = 0;} else {$counter ...
What is difference between mysql_fetch_array(),mysql_fetch_row() and mysql_fetch_object()please insert with example
How to make a download page in own site, which i can know that how many file has been loaded by particular user or particular ipaddress
Latest Answer: First, establish a simple socket connection.
If in UNIX/LINUX,
use AF_INIX.function
get_the_host($host,$path)
{
// open the host
$fp = fsockopen($host, 80, &$errno, &$errstr, 30);
// take control of server timeout ...
Latest Answer: Both echo and print are language constructs. However print() acts like a function in that it returns a value and can be used in complex expressions.Furthermore, echo without parentheses can take multiple arguments. Echo with parentheses and ...
Latest Answer: When we use mysql_connect every time we have to make connection when every time page is loaded but when we use mysql_pconnect it does not have make connection every time. ...
Latest Answer: use this $IPAddress = $_SERVER['REMOTE_ADDR']; ...
How i will check that user is, logged in or not. i want to make it a function and i want to use in each page and after login i want to go in current page(same page. where i was working)
View page << Previous 3 4 5 6 [7] 8 Next >>

Go Top