Finished through gmail chat, but here is the full (short) solution:
From http://forums.iis.net/p/1150139/1875774.aspx
Start>run>services.msc, scroll down to World Wide Publishing service, and...
Type: Posts; User: motormichael12; Keyword(s):
Finished through gmail chat, but here is the full (short) solution:
From http://forums.iis.net/p/1150139/1875774.aspx
Start>run>services.msc, scroll down to World Wide Publishing service, and...
So what it looks like is $frmCounter is counting how many areas of the form are successful?
I am making a website that will be similar to Yahoo groups but for a specific purpose. All groups will be made by myself, not registered by users (this is on purpose, however I will be adding groups...
try http://127.0.0.1/test.php
Then read this:
http://www.wampserver.com/phorum/read.php?2,40297,45889
Here are other ones that may help:
http://www.wampserver.com/phorum/read.php?2,39492...
if its on the same website couldn't you jsut use mkdir?
Whether it is incrementing or not the query still needs to be changed... either one of these would work for auto increment:
$query = "INSERT INTO pitman(id, f_name, postcode, tel, mobile, email,...
Does it give the "Can't send email" error that you ahve in the sendmail.php code, or does it act as if it sent but then doesn't ever get to the inbox?
Try this:
<?php echo date("g:i a"); ?>
I believe adding the time() in there changes it from localtime to unix timestamp.
It isn't alwasy by someone with access or accident, it could be that someone sees a field and decides "hmmm I wonder if I can hack their site" or something and then tries entering an attack into the...
insert into table(field1) values ('<,text1>.<text2>')
To convert text in PHP do it like this:
$var1 = "hey <b>there</b> <span>ted</span>";
$var1 = htmlentities($var1);
echo...
my idea:
<!--[if IE 6]>
<meta http-equiv="refresh" content="0;http://www.mysite.com/iesucks/">
<![endif]-->
iesucks index:
im surprised you can see this since IE SUCKS! get firefox...
try this:
replace:
if($_POST['Submit']){
$open = fopen("textfile.txt","w+");
$text = $_POST['update'];
fwrite($open, $text);
fclose($open);
If you mean you want it to show the form even after updating, try this:
<?
if($_POST['Submit']){
$open = fopen("textfile.txt","w+");
$text = $_POST['update'];
fwrite($open, $text);...
Phones have an email address assigned to them, like @messaging.sprintpcs.com
I'm sure there is a way to find what service the user uses, and then jsut use the correct email address.
See here...
Try here: http://dev.mysql.com/doc/refman/5.0/en/tutorial.html
After you do that, view the source and look at the output. Does it link to the correct image path?
I have a script that usign php/javascript to get the current server's time with PHP but then make an automatic counter so that it keeps going up using javascript.
I also have one that will...
This:
if ($eu2 == 0){
$seu2 = '<font color=\'red\'>Not Joined</font>';
}else{
$seu2 = "$ladderstatus2 Points";
}
I have classes that are categorized like this:
World
|-MainScreen
|-Active
Actor
|-Message
I have MainScreen as a way to choose which level you want. It makes text like this:
Could you post line 7 from the first error?
Also, could you post the query and the $result variable for the second error, as well as any variables involved in the query?
What is the rest of your query?
Here is an example that should work:
SELECT *
FROM table1 tbl1, table2 tbl2
WHERE tbl1.username <> tbl2.username
I am always learning more, and that right there is something I wish I would have learned alot sooner. That function looks extremely useful.
$line = file('http://example.com/productsrecap.php');
if(!is_array($line)) die("File could not be opened");
$lines = explode("\n", $line);
$count = count($lines);
$item1 = rand(0, $count);...
If I had known what you menat I could have told you that lol sorry:)
You could use PHP's GD functions. I have no experience with them, but I believe there are tutorials allover the place for making butotns. Look at this page:
http://phpbutton.sourceforge.net/