PravinS
-
Posts
459 -
Joined
-
Last visited
-
Days Won
2
Posts posted by PravinS
-
-
does database table "tbl_paramhead" have data in it?
have you checked the view source to check whether the drop down is generated properly...if yes, then if should work
-
print_r() the $_POST array at top and check what you are getting in post data, also check the view source of the page to check the drop down values
-
You haven't set value in dropdown options, check below line
echo '<option value>' .$row['paramhead']. '</option>';
use it as
echo '<option value="'.SOME_VALUE.'">' .$row['paramhead']. '</option>';
-
You haven't passed link identifier returned by mysqli_connect() to mysqli_query() function
Check Manual for more details: http://php.net/manual/en/mysqli.query.php
-
You can replace below line
for($i=1; $i<=8; $i++){
by
$numrows = count($row); for($i=1; $i<=$numrows; $i++) {
-
-
Set headers, 4th parameter of mail() function
$headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; // Additional headers $headers .= 'To: TO_NAME <TO_MAIL>' . "\r\n"; $headers .= 'From: FROM_NAME <FROM_MAIL>' . "\r\n"; $headers .= 'Cc: CC_MAIL' . "\r\n"; $headers .= 'Bcc: BCC_MAIL' . "\r\n";
-
You can use UPDATE query like this
UPDATE table_name SET phone = CONCAT('353',TRIM(LEADING '0' FROM phone)) WHERE SUBSTRING(phone,1,1) = '0';
before that use the SELECT query to check if its correct or not
SELECT phone, CONCAT('353',TRIM(LEADING '0' FROM phone)) FROM table_name WHERE SUBSTRING(phone,1,1) = '0';
hope this will find you helpful
-
It will be better if you use ORDER BY DESC and LIMIT 10 in SELECT query, which will give you last 10 records in descending order.
Or you can use pagination, by which you can devide records(10 records) per page.
-
You can use OR, your WHERE condition will be like this
WHERE MATCH(items.item_title) AGAINST('$search_query' IN BOOLEAN MODE) OR MATCH(type_1.type_1_name) AGAINST('$search_query' IN BOOLEAN MODE)
hope this will work for you.
-
Just google it
-
-
file_get_contents() function will return just a page content (view source), it will not execute any javascript or AJAX code, and "Show All" button is providing AJAX based data
-
Full Text search may work for you
Refer: http://dev.mysql.com/doc/refman/5.7/en/fulltext-search.html
-
Instead of VARCHAR data type for text use TINYTEXT, TEXT, MEDIUMTEXT, or LONGTEXT according to your requirement
-
Try this
<html> <head> <style type="text/css"> .colleft{ float:left; width:50%; text-align:left } .colright{ float:right; width:50%; text-align:right; } </style> </head> <body> <div> <div class="colleft">Left</div> <div class="colright">Right</div> </div> </body> </html>
-
-
Also avoid adding <html>, <head>, <title>, <body> tags, just add <body> tag content in mail body
- 1
-
Does the dbconfig.php file have to be on both the form page and the submit page?
Will include the error reporting now to check for additional info
where ever you communicate with database, connection code should be added
-
Named the submit button, but still no luck on writing to the database....
you have not included "dbconfig.php" database connection file in "registration.php" file
also use error_reporting(E_ALL & ~E_NOTICE); at the top, to check PHP errors
-
I can't believe I missed the method... Feel like a fool... Ok so now that I've added that I checked and can confirm that the array now holds the data, but now it's not writing to the database.
I still have to read through everything again so see what I may be missing.
also you have not given name to submit button
-
In index.php file you have form tag without method, so by default form method is GET
just replace below line
<form action="mysuperscript.php" autocomplete="on">
with
<form action="mysuperscript.php" autocomplete="on" method="post">
i hope this will work for you
-
I think you have used Form GET method instead of POST
-
Try using this function
function sort_array($array, $sortkey, $order) { if ($order == "DESC") $or = "arsort"; else $or = "asort"; foreach ($array as $key => $array_row) { $sort_values[$key] = $array_row[$sortkey]; } $or($sort_values); reset($sort_values); while (list ($arr_key, $arr_val) = each($sort_values)) { $sorted_arr[] = $array[$arr_key]; } return $sorted_arr; }
hope this will work for you
Parse error: syntax error, unexpected 'include' (T_INCLUDE) in C:\xampp\htdocs\PoetsIN\create-account.php on line 6
in PHP Coding Help
Posted · Edited by PravinS
Missing semi colon( ; ) at below mentioned line