
PravinS
-
Posts
459 -
Joined
-
Last visited
-
Days Won
2
Posts posted by PravinS
-
-
if you want to send mails to more than 100 emails ids then your mail code should be in while loop
-
its correct
-
have u retarted the apache server after doing changes in php.ini file
-
you can use TCPDF php library
using TCPDF library you can directly create PDF of HTML
-
what is your logout.php page script, you may have used session_destroy(), it will destroy all your registered sessions
instead of session_destroy() use Unset()
-
Try using SQLyog
https://www.webyog.com/product/downloads
you can import MS Access database in SQLyog
-
first remove semi colon (
from last closing bracket
and there is no closing bracket for first if condition
if($result)
also use CODE tags when you post any code so it can be viewed properly
-
search for "pagination code using php" on google, you will get the code
-
you need to use some library
try TCPDF
-
your SMTP connection is not working, try telnet from your server
telnet smtp.gmail.com 587
telnet smtp.gmail.com 465
-
check this line
$mail->AddAddress(abcd@gmail.com,'abcabc');
use quotes around email address
-
check your sql query
-
its problem with your query, echo the query and debug your query in phpmyadmin or any other MySQL client
-
you can put session_start() at top of your page
-
you can use session to store the date when you open page first time
next time you just need to check the session value, if it exist then don't store date in it, use session variable date
may this will help you
-
try using NuSOAP php toolkit
-
-
second link is a reference for to check difference between specific time zone
also you need to set some default time zone in your code and according to it your need to calculate the difference
-
you need to check SMS APIs
-
use NuSOAP PHP toolkit
-
session_start() function should be at the top every time
-
-
it depends on payment gateway you are using, there are number of payment gateways like EBS, CCAVENUE which support card payment methods
-
user array_slice() like array_slice($array,0,-10)
How to handle this PHP encoding issue?
in PHP Coding Help
Posted
try using utf8_decode() function