Ditto.
Type: Posts; User: thetestingsite; Keyword(s):
Ditto.
If you were to make something yourself, be sure you get a PCI compliance scan to test for these vulnerabilities.
Depending on how complex you want to make it, I would say just start by using Paypal Standard's "Buy Now" buttons. The other option would be to use a shopping cart system like Zen-cart or osCommerce...
Cron (or scheduled task in Windows) would be the best bet. Hope this helps.
I would say that you could send via sms a pin number and on the webpage show the user a page that has form fields for the user to enter their mobile number and the pin number sent to it. As far as...
is your server on a Windows platform? This was the only time I ever noticed this type of behavior. Either that or a certain module is not being loaded into php that does the auto escaping of certain...
There is a function in PHP that already does this and it is called nl2br()
Hope this helps.
for that you would want to use preg_match and regular expressions.
Hope this helps.
Like I said before, move the function outside of the while loop like so:
<?php
include('db_conn.php');
$queryget = mysql_query("SELECT * FROM reg_users ORDER BY `time` LIMIT 10") or...
move your function outside of the while loop.
Hope this helps.
um...what?
Try this:
<?php
include('db_conn.php');
$queryget = mysql_query("SELECT * FROM xxx ORDER BY `date` LIMIT 3") or die("Error with query");
$count = 0;
you could use mysql_real_escape_string(), strip_tags(), htmlspecialchars(), and htmlentities() to take care of this.
Hope this helps.
Welcome to the forums. Also, you did post this in the correct forum.
We would need to see your code to be able to help you further, but what you could do is basically save the image that is being created by your php script, then add something like this everytime the...
Use exec instead of system. By doing this, it will get rid of the output of system to the browser. As far as a better way to check mime type, no clue off the top of my head.
Hope this helps...
My head hurts now. John, vanks for shring vis.
php.ini is read at the start up of the webserver at the time the php executable is loaded. You could simply restart IIS in order to see changes made to the php.ini file or reboot the whole server....
Being that you are using single quotes for the echo, you have to use double quotes or escape the sinle quotes in your javascript code.
Hope this helps.
You need to include the PHP code as well in order for us to successfully help you.
Please post a link to the page on your site that contains the problematic script so we can check it out.
See these threads for proper posting format when asking a question....
When I try to download the script, the link is broken (goes to a different website). I would really like to see this in action.
The following PHP snippet displays the IP address of the visitor to the page.
<?php
echo $_SERVER['REMOTE_ADDR'];
?>
Try this instead:
<script type="text/javascript">
function ChangeHiddenValue(newval) {
document.getElementById("target_url").value = newval;
Try placing $fooarray before $replaceit.
Hope this helps.