I'm almost done with the PTP part of my script, but I can't figure something out.
How do I make the entrepreneurs only earn money if there is an ad running? Because I don't want people promoting the PTP with no ads to steal my money

use an if statement
and use mysql_num_rows function.
for example
$q = mysql_query("SELECT * FROM ads WHERE active='1'");
$num = mysql_num_rows($q);
if($num != 0)
{
while($r=mysql_fetch_array($q))
{
$ptp = "whatever";
}
}
else
{
$ptp = "whatever";
}