|  PHP beginner |  | Ok ik zal is kijken 
 *edit*
 
 Ik gebruik xampp
 
 *edit 2*
 
 nu is mijn code zo
 
 
    
    
        
            
                
<?php
	if(isset($_POST['submit']))
	{
		$ch = curl_init("http://www.detelefoongids.nl/dtgi/ZoekUitgebreidInDeTelefoongids.do");
		curl_setopt($ch, CURLOPT_POST, true);
		curl_setopt($ch, CURLOPT_POSTFIELDS, "wie=" .$wie. "&waar=" .$waar."");
		curl_exec($ch);
		
		if(curl_errno($ch))
		{
			echo curl_errno($ch);
		}
		else
		{
			echo "er is een curl verbinding";
		}
	}
else
{
?>	
<form method='post' action="<?=$_SERVER['PHP_SELF']?>">
wie: <input type='text' name='wie'>
waar: <input type='text' name='waar'>
<input type='submit' name='submit' value='zoek'>
</form>
<?php
}
?>
 <?php 	if(isset($_POST['submit']))	{		$ch = curl_init("http://www.detelefoongids.nl/dtgi/ZoekUitgebreidInDeTelefoongids.do");		curl_setopt($ch, CURLOPT_POST, true);		curl_setopt($ch, CURLOPT_POSTFIELDS, "wie=" .$wie. "&waar=" .$waar."");		curl_exec($ch); 		if(curl_errno($ch))		{		}		else		{			echo "er is een curl verbinding";		}	}else{?>	<form method='post' action="<?=$_SERVER['PHP_SELF']?>">wie: <input type='text' name='wie'>waar: <input type='text' name='waar'><input type='submit' name='submit' value='zoek'></form><?php}?>
   
 en ik heb de php ini die dll files aangezet voor curl,
 alleen heb ik nog echter wel die error.
 |