-
Replied To a Post in PHP tabs or Separate pages
> Does the number of if conditions really make changes to the performance of the page? probably, nobody ever study the performance of a nested if statements. Nesting them too … -
Replied To a Post in unable to record group_level
where is the "group_level" in your form? this will always be empty $group_level = isset($_POST['group_level']) ? $_POST['group_level'] : ''; because it will never evaluates to true and you've sets expressions … -
Replied To a Post in How to run Php program through Wampserver?
create a new file, put paste codes below, and save as whatever.php in wamp/www directory <?php echo 'Hello, are we there yet?'; direct your browser to http://localhost/whatever.php, voila your first … -
Replied To a Post in Cake PHP issues
here is the [link](https://github.com/veedeoo/cakephp) of a constantly updated version . -
Replied To a Post in Cake PHP issues
What makes the cake better than others as far as your new project is concern? The reason I am asking you is that Cake is not the framework for immersion … -
Replied To a Post in Recursive function not returing but echoing
before answering your question, what is your purpose for using the PHP recursive function or a function that calls itself? Just give me one reason why. -
Replied To a Post in E-commerce Website with shopping cart
> Really, are people unable to do even a copy and paste now? Wow. We can pretty much see what will be the PHP developers of the future. -
Replied To a Post in Image Upload In Not Working in server
You can simply do a simple test. Check for the upload directory permission <?php echo substr(sprintf('%o', fileperms('/images/news/')), -4); check for the file upload settings on your php.ini file can also … -
Replied To a Post in E-commerce Website with shopping cart
from the top of my head, all you need to do is copy and paste onto the search box.. OScommerce, zencart, open cart, tomato cart, presta shop, magento community edition. -
Replied To a Post in PHP LANGUAGE SECURITY DOUBTS PLZ HELP ME in 24 HOURS
> what are all the testing tool available in PHP? There is a [wapiti vulnerability scanner](http://wapiti.sourceforge.net/) if you know the basics of python command line interface. This tool is the … -
Replied To a Post in PHP or ASP.net
Go for the one that you feel in love at first sight. Personally, I highly prefer PHP over C# or vb.net for web development. I am not saying that PHP … -
Replied To a Post in Why you don't want to mix PHP and HTML directly.
I think new Dwoo is way better than the 2008 release. This is the second template engine I have learned. I think I even suggested the iterator count to the … -
Replied To a Post in where do i have to put the session_id() in a wordpress plugin
you can add it on your plugin or theme function. I don't have any time to actually check for my answer. However, I did this long time ago and this … -
Replied To a Post in PHP script logs in, but doesn't get the data.
Can you please tell me why you need to send two mysql queries during login credentials validation? For security reason, what these pages tell the user, when they arrived upon … -
Replied To a Post in What should I have in my portfolio: a crying need for specific examples
You can build your portfolio similar to whatever is the common requirements in your area. Allow me to use my situation as an example, I can breakdown 3 distinct requirements … -
Replied To a Post in PDO wait for available connection
another thoughts.. you can also count the PROCESSLIST to find out if you are on the max connection allowed , then let the next connection to sleep, check on wake … -
Replied To a Post in Techniques to Learn Drupal
There was a book written for this. I believe the title was "Drupal 7 module Development". You really need to get this book. Online tutorial will not suffice to acquire … -
Replied To a Post in Unable to save data in mysql database
The script above should have at least more than 2 errors. this alone will give an error if (isset($_POST['submit'])) //&& ($_POST['submit'] == "Submit")){` because this part has been commented out … -
Replied To a Post in what is Code Igniter and Yii
Honestly, I think you should have not accepted the project without knowing the core requirements. I am not insinuating here that you won't learn the frameworks, but if you haven't … -
Replied To a Post in Please Help To Get MIN Price Product
Honestly, your query looks good to me. Unless, you made a mistake in referring to the image. <img src="directory/<?php echo $row['image'];?>" /> should give you something like this <img src="directory/mpb.jpg" … -
Replied To a Post in Why you don't want to mix PHP and HTML directly.
I am also a big fan of the separation of business logic and presentation logic. In fact, I have attempted to create a very simple template engine that can run … -
Replied To a Post in Techniques to Learn Drupal
in addition, you may want to get familiarize with the drupal file system. Like many other applications not written in strict MVC design pattern, Drupal is built on the common … -
Replied To a Post in Which Domain Is More Attractive
Honestly, I kind of like the gimmeDotSupport. It is pretty straight forward I think. -
Replied To a Post in CMS Template and Plugin System
Most are using database, but I prefer storing it as xml file similar to how the symfony2 stores its AsseticBundle configurations as xml files. -
Replied To a Post in CMS Template and Plugin System
for the template name or style name, you can either store it in database or in xml file. -
Replied To a Post in receiving spam messages from opencart
are talking about this [extension](http://www.opencart.com/index.php?route=extension/extension&filter_search=SPAM%20prevention)? Can you tell us exactly, which page these spams are originating from? Is it on your catalog? The reason I am asking is that, I … -
Replied To a Post in Payza IPN Handler is not working or not sending IPN messages
you can add fwrite on the alert_url and write the response to a file. -
Replied To a Post in Payza IPN Handler is not working or not sending IPN messages
try var_dumping the response from payza. In this case it should be the $info. Also, try var_dumping the $response just below the cURL's curl_close() call. -
Replied To a Post in Magento Budle Product
> it does not check if the function exists or method exists before even calling a function or instantiating an object. Just for clarification, what I meant by the above … -
Replied To a Post in Pushing the admin footer down
IMHO, the only way to push the footer down and keep it there is to have a wrapper that will have a minimum height of 100% and then we can … -
Replied To a Post in Magento Budle Product
I don't have the source of Magento, but what the error tells us is that whatever is the object of the method getPosition(), it is not being instantiated. You will … -
Replied To a Post in folder/ worked in local host now i have to folder/index
I forgot, If you can access your httpd.conf, you can edit it like this as per apache's instructions. Make sure the dir_module is installed though. <IfModule dir_module> DirectoryIndex index.html index.shtml … -
Replied To a Post in folder/ worked in local host now i have to folder/index
you can try DirectoryIndex index.php try adding that to your .htaccess file either in the root or your directory in question and let us know if it work. You can … -
Replied To a Post in senior of HS
> OMG veedeoo did you bomb the bully? I guess that would have been pretty cool but one helleva scare if the guy ended up dead! lol :). No, I … -
Replied To a Post in Fatal error: Class 'Facebook\FacebookSignedRequestFromInputHelper'
can you show us your codes? Normally, the page that will be running the facebook api will have codes like this <?php require_once('autoload.php'); use Facebook\FacebookSession; use Facebook\FacebookRequest; use Facebook\GraphUser; use … -
Replied To a Post in display data from database from login
You need to give us your form codes. If you have one like this <form action="" method="post"> <input type="text" name="username"/> <input type="password" name="password"/> <input type="submit" name="submit" value="login"> </form> then the … -
Replied To a Post in Im lost,
Hi and welcome. -
Replied To a Post in display data from database from login
besides from using the deprecated mysql_ function, your query is not properly constructed. It should be constructed like this. Assuming that the $db is the persistent database connection. Make sure … -
Replied To a Post in how to identify between clientside and serverside js files?
can you open one of them or at least when you see this <script runat="server"> you might also see something like this var sys = require("sys"),http = require("http"); that is … -
Replied To a Post in senior of HS
Graduated High School From the world class Tech Magnet School here in California. Although we have football field, I don't know much about playground, I am sure we don't have … -
Replied To a Post in Apriori Algorithm in web development [on hold]
What is certain though is that, people will buy paper and mechanical pencil with eraser or paper ,pencils without eraser and eraser. But less likely to buy just an eraser … -
Replied To a Post in Apriori Algorithm in web development [on hold]
why not record the sales on different table and sort the best combination or group of products that sell the most. Don't make it too complicated. All you need to … -
Replied To a Post in hello
How about Welcome and Hello. -
Replied To a Post in T_VARIABLE
should be like this $dataid = mysql_fetch_array($studentidResult); -
Replied To a Post in hi
line 47: comparison operator incomplete. line 47: php closing tag needed. You need to complete this statement if($expires > and after the statement, you need to close your PHP ?> … -
Replied To a Post in Best password hashing for CMS
Both will be good and this new [password_hash](http://php.net/manual/en/function.password-hash.php) function from PHP. -
Replied To a Post in Menu on all pages
index.html must be save as index.php also. Otherwise, anything with <?php will not be parsed by the PHP parser. There are alternatives to .php extension. PHP parser will parse any … -
Replied To a Post in Fatal error: Class 'Facebook\FacebookSignedRequestFromInputHelper'
I can't tell you exactly what went wrong. However, is this the same [SDK V4](https://github.com/veedeoo/facebook-php-sdk-v4) you are following? -
Replied To a Post in can session slow my webserver
session is pretty much the standard my friend. Assuming that the users don't turn off their cookie, still you will have to save it to your database for verification. Session … -
Replied To a Post in Application Instantiation Error
Can you give me your rewriteBase value? the value for the rewriteBase should be the directory the joomla is installed. For example, if joomlas is located in www/joomla then your …
The End.