the server was a secure server (ie, with encryption)... for whatever reason the server no longer is using the ssl encryption.
If you are running a shopping cart that handles financial transactions itself, then this is very bad news!
If it aint broke, redesign it!
I also notice that you have a semi-colon at the end of the if statement. This is not needed and might cause problems for php.
if (comp == date("Y-m-d",0000-00-00);{
should be
if (comp == date("Y-m-d",0000-00-00) {
If it aint broke, redesign it!
Can you post parts of your code please.
Are you using imagecolorallocate() function to allocate black as a colour in the image?
If it aint broke, redesign it!
ok, what error messages aer you getting? If you are literally adding target="_blank" to the echo statement then it will cause a parse error. You would need to escape the opena dn close double quotes:
echo "<a href ='get_landlord_details_unregistered.php?userID=" . $userID . "'...
Make sure that your call to mysql_free_result($myQuery) is after you have finished with $myQuery, else it will delete the results stored in $myQuery.
If it aint broke, redesign it!
hmmm, just quickly having a think while looking at the ol' doumentation I would suggest opening the image using imagecreatefromjpeg (http://www.php.net/manual/en/function.imagecreatefromjpeg.php) function.
Then use imagecopy (http://www.php.net/manual/en/function.imagecopy.php) function to copy...
Fantastic site!!! I disn't use reg ex'a much cos it took me ages to figure them out, but now i might use them a bit more :D
If it aint broke, redesign it!
Hmmmm, here is a copy of the code that I used to test it with.
<HTML>
<HEAD>
<script>
<!--
function Empty()
{
if ((document.frmItem.ItemName.value == "") || (document.frmItem.Description.value == "") || (document.frmItem.AskingPrice.value == "") || (document.frmItem.Place.value == ""))...
Where have you heard that? If you are referring to something like phpMyAdmin then that works in a different way. I believe it splits in the multiple statements into an array on single statements, then executes each one on it own. (I could be wrong on that, so dont take it as absolute truth)
If...
This certainly isn't he most elegant way of doing it. But im not too good with regular expression matching. I think this will do what you want.
The problem with your code is that it was saying it was ok if ANY part of the string matched. I dont know how to say "only if it all matches" in a...
Well done! I commend your lateral thinking! I must admit I wouldn't have thought of that. It may be a bit of a smoke and mirrors trick, but sometimes thats the only way!
Westbury
If it aint broke, redesign it!
I generally create pages where the content is about 800px wide (usually a little less to compensate for borders) and then design the page so that it can be any length.
Most people these days have a resoution of at least 800x600.... if they dont then its their tough luck that you page isn't...
Im not sure if this is functionally differnet to
main.location=selectedOptionvalue;
but you could try
parent.main.location=selectedOptionvalue;
instead
If it aint broke, redesign it!
It could be failing because your are trying to cerate a column called time. Time is a column type to mysql and so this may be confusing it. Try renaming it.
You also dont need the double quotes into the mysql_query command.
mysql_query($contents);
What comment line in createdb.sql? Any...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.