-
Posts
1,041 -
Joined
-
Last visited
-
Days Won
17
Everything posted by gw1500se
-
First please use the code icon (<>) and select PHP so it formats your code to make is easier to read. Second you probably should be using PHPMailer for your email. It is much easier to use and gives you better control. Finally to debug this you need to make sure you have errors enabled but your insert does not contain the field 'id'. Where do you add that to the record?
-
I think you are asking for a singleton class: class MyFetchController { $inst=null; // private constructor so it cannot be instantiated externally private function__contruct() { // initialzation code here as needed } public function Instance() { if ($inst==null) { $inst=new MyFetchController(); } return $inst; } } Any time you want that class call 'Instance' and you will always get the same instance.
-
BUILDING A TRANSCRIPT SYSTEM USING PHP/MYSQL
gw1500se replied to JophusEdumadze's topic in PHP Coding Help
Start with a flow chart and develop a database schema. -
https://www.php.net/manual/en/mysqli.multi-query.php
-
Try this: $queryString="SELECT cat_id, subcat_id, subcategory_title, subcategory_desc FROM categories, subcategories WHERE ($parent_id = categories.cat_id) AND ($parent_id = subcategories.parent_id"; echo $queryString; $select = mysqli_query($con,$queryString); Look at the echo'ed string to find the syntax error.
-
When you do echo $query and post that.
-
You don't say what the error is but that is a different problem. Start an new thread on the MySQL forum.
-
try this: include("/home2/csi/public_html/resources/con.php");
-
You need to determine where that file is relative to the httpd root. Require and Require_once does the same thing as include. If the path is wrong, it is wrong.
-
It should show the absolute path (I'm guessing from the name). It should be something like '/var/www/html'. The solution is to not use absolute path but rather relative. Try: include("resources/con.php");
-
So it is now clear that ABSPATH is not being substituted the way you expect. How is it defined and where? I don't normally use constants but somewhere you must have a "define('ABSPATH',<whatever>);" but is not executed before that include.
-
echo ABSPATH ."resources/con.php"; Let's look at the resulting string. Then verify that is it correct and if the file does exist, has the right permissions.
-
What is line 2 of rankings_navigation_process.php?
-
Since you don't say what ABSPATH is, I am guessing there is a missing '/' in the resulting string.
-
https://www.php.net/manual/en/book.ssh2.php
-
Recheck your code to make sure there is nothing being output (including white space) prior to the headers. You don't show all your code but I'm guessing there is some output preceding the header.
-
PHP $this->_vars['HTML'] unknown missing value [closed]
gw1500se replied to THEJOKERRED's topic in PHP Coding Help
What part of the error message is not clear? Also don't post your code in such an unreadable format. -
Check the permissions for /tmp. It should be (777): drwxrwxrwt. 22 root root 12288 Mar 21 14:01 /tmp Any user can write to /tmp. The 't' sticky bit handles the security issue. What ever user writes to /tmp is the only user that can access that directory/file (700) unless that user specifically chmod's something else. Also check session_save_path and its permissions.
-
I think if you echo $todate you will get your answer.
-
multiple files upload form records duplicating
gw1500se replied to ianhaney's topic in PHP Coding Help
Did you echo $insertValuesSQL to make sure it contains what you expect? -
multiple files upload form records duplicating
gw1500se replied to ianhaney's topic in PHP Coding Help
What you are asking for is a one-to-many table for your filename. Create a separate table for the file names and use the 'user_id' or something unique as the key that defines who belongs to that filename. Then query that table by 'user_id' and it will return all the filenames associated with that user.