firebug'ta birşey söylemiyor. daha doğrusu html css ve dom olaral baktım ama ilgili birşey göremedim.

<?php

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.girilensite.com/dizin/zyz");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,"submit");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_exec($ch);
curl_close($ch);

?>
Şu şekilde deniyorum ama submit kısmını geçipte sonraki sayfaya gelmemiyorum.

Kendim image olan submit'e tıkladığımda http://www.girilensite.com/dizin/zyz olan adres http://www.girilensite.com/dizin/zyz# oluyor ve sonraki sayfa açılıyor.