Hi,
I think the problem is the image size, is to big. For example, a single image has: 331,97 KB , 1.800px × 1.200px.
Try make the images smaller, it is no need a width of 1800px. For example:...
Type: Posts; User: CoursesWeb; Keyword(s):
Hi,
I think the problem is the image size, is to big. For example, a single image has: 331,97 KB , 1.800px × 1.200px.
Try make the images smaller, it is no need a width of 1800px. For example:...
Hi,
Try add recordNum into a hidden field, and add "name" attribute for "webURL".
myD.innerHTML = '<br />Update info for record #'+recordNum+'<br /><br /><form action="updatesql.php"...
Hi
Seem the problem is in the way you use jQuery $.post .
Here is the syntax for this Ajax method:
$.post('script.php', data_to_send, function(response){
$('#dv').html(response); // adds...
Hi
Try use the addslashes() or mysql_real_escape_string() functions. See on php.net examples.
Hi,
I think a simple and good answer is: If you need cookie on server side, into a php script, set and read cookie using PHP; if you need data from cookie directly into a JavaScript code, use...
Hi
Try insert and select data with PHP PDO, or MySQLi.
Example with PDO:
<?php
// Connection data (server_address, database, name, poassword)
$hostdb = 'localhost';
$namedb = 'DB';
$userdb =...
Hi
If the script is on your computer (localhost), maybe the Apache, PHP settings are the problem. Try use XAMPP, or WampServer.
Hi
Thank you for your answer and indications. I learned something that I'll apply in next scripts.
Hi,
Here's a JavaScript script that can be used to get and show the mouse coordinates inside a Div, or image.
<div id="divid" style="width:250px; height:100px; background:#0809fe;"></div>...
Hi,
Also, if you realy want to thank you someone, visit his /her website (if it has an website added in profile or signature).
Hi,
Maybe the best cms for someone is the cms made by himself.
Try, Drupal. It has lots of plugins you can install and it is easy to manage.
Hi,
Try look on the net for: " php mvc pattern ". it is a standard in profesional php web building.
Hi,
You need a JavaScript code that gets the hash (value1) from url, get the select list, traverse the option and set "selected" to the option with value from hash.
Like in this script:
<select...