-
Content Count
334 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout inversesoft123
-
Rank
Advanced Member
Contact Methods
-
Website URL
http://www.inversesoft.com/
-
Yahoo
inversesoft
Profile Information
-
Gender
Male
-
Location
Pune India
-
$_GET url parameter not working in a wizard form?
inversesoft123 replied to duckygray's topic in PHP Coding Help
This usually happens when you do AJAX Calls I am sure when you click on button there is an ajax call to the wizard.php page. The quick solution will be save name attribute to the session from index.php page $_SESSION['name'] = $_GET['name']; when you read name from session on wizard.php page unset the variable from session unset($_SESSION['name']); -
Modify your .htaccess and tell it to ignore certain folders RewriteEngine On RewriteRule ^(sf|otherfolder|morefolders)($|/) - [L] RewriteRule ^product/([0-9]+)/(.*).html$ detail.php?id=$1 [L] for multiple folders use PIPE "|" symbol.
-
how to execute batch file in wamp server php
inversesoft123 replied to Shreeprasath's topic in PHP Coding Help
As per my understanding you want to concurrently run many files at a same time. This can be achieved by using pThreads. Learn More.. https://www.php.net/manual/en/book.pthreads.php In order to use pthreads you need to compile PHP with ZTS (Zend Thread Safe) -
Hello All, I had a major problem with choice of PHP and MongoDB versions. I have a project developed in PHP5.6 with PHP 5 MongoDB Driver and I am willing to use PHP with ZTS and pThreads for parallel execution. Unfortunately when I compile PHP with ZTS and pthreads compiler gives me error while setting up PHP Now, one may thing why I am sticking to PHP5, Its clearly becuase of MongoDB driver of php5. PHP7 with ZTS works perfectly but again I canot connect MongoDB because php7 have different mongoDB driver. Please guide me whether updating code to PHP7 Mongo is just a solution left with me ? or is there any workaround ? Thanks in Advance.
-
Hello trim it and check it is blank or no. if(trim($_POST["haddy") != "") {