
PravinS
Members-
Posts
459 -
Joined
-
Last visited
-
Days Won
2
Everything posted by PravinS
-
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
-
check this line $mail->AddAddress([email protected],'abcabc'); use quotes around email address
-
check your sql query
-
How to resolve problem of session_start on Linux
PravinS replied to Vidyadhar's topic in PHP Coding Help
you can put session_start() at top of your page -
Storing timestamp in variable for later use.
PravinS replied to MissProgrammer's topic in PHP Coding Help
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 -
check this url http://www.freecontactform.com/email_form.php
-
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
-
Sending SMS from web application to mobile
PravinS replied to Pradeep_Chinna's topic in PHP Coding Help
you need to check SMS APIs -
use NuSOAP PHP toolkit
-
session_start() function should be at the top every time
-
check PHP time zone section http://php.net/manual/en/timezones.php also check http://wwp.greenwichmeantime.in/to/ist/to-est/
-
I Need Card Integration Code... Please Help
PravinS replied to kashiflatif90's topic in PHP Coding Help
it depends on payment gateway you are using, there are number of payment gateways like EBS, CCAVENUE which support card payment methods -
Remove all but last 10 elements in an array
PravinS replied to bruceblacklaws's topic in PHP Coding Help
user array_slice() like array_slice($array,0,-10) -
I Need Card Integration Code... Please Help
PravinS replied to kashiflatif90's topic in PHP Coding Help
what kind of card integration? -
your button name is "Submit" with capital "S" and while checking isset you are checking with small "s" as "submit", also assign values to each option in age drop down
-
check SOAP client http://php.net/manual/en/class.soapclient.php
-
how are you executing your index.html page? also you can not have PHP code in HTML page, check index.html page
-
write error_reporting(E_ALL) at the top, so it will display errors if any also check whether your database user is having CREATE previlege
-
check your MySQL database username and password
-
Write a large amount of data to a text file
PravinS replied to kiwis-are-cool's topic in PHP Coding Help
sorry not the SQL query, but what you try to say also <p> tag will also not work in text file and what is "custom_weapons_v3", if it is a PHP variable then use $custom_weapons_v3