No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
Re: [QUOTE=jeyakannanrd;948665]Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/leadtwot/public_html/staging/contact_us.php:1) in /home/leadtwot/public_html/staging/contact_us.php on line 1[/QUOTE] I have this problem too. I tried everything without success. After long research i found the reason and decision in [URL="http://kasolutions.wordpress.com/2009/07/14/fix-warning-session_start-function-session-start-cannot-send-session-cache-limiter-headers-already-sent/"]this place[/URL]. I hope that's help you and save … | |
Re: The code realized with fgetcsv() should be something like this : [CODE]PHP Code: <?php $fp = fopen("english.csv", "r"); $length = 4096; /// have to be optional length ... $fildDelineate = ','; /// or "|" ... declare what you need $databasetable = 'tableName'; $counter = 1; // to omission first row … | |
Re: [URL="http://corz.org/serv/tricks/htaccess2.php"]more .htaccess tips and tricks..[/URL] | |
![]() | Re: Hi, you doing some wrong things. - here you get from DB all user frend, but in loop you use a one variable which will overwrite it value, you have to use a array to put in all geted values... you have to do this : [CODE] $sql = mysql_query("SELECT … ![]() |
Re: Here you are one useful link about [URL="http://corz.org/serv/tricks/htaccess2.php"]more .htaccess tips and tricks..[/URL] | |
Re: Some useful [B][URL="http://corz.org/serv/tricks/htaccess2.php"]link [/URL][/B] about your problem. | |
Re: [QUOTE=nabilamn;1243757]im working on with the js calculator. to silviuks, i want the total price. not the total stuff i bought. :)[/QUOTE] Do you want to do something like this : [CODE] <script type="text/javascript"> function totalSum() { var food = document.getElementById('food').value; var clothes = document.getElementById('clothes').value; var groceries = document.getElementById('groceries').value; document.getElementById('total').value = … | |
Re: I access this link via [B]curl[/B] without any problem ? About blocking curl to prevent from scraping - i think Curl it is just like using a browser to get to your site. If you put something up that can be browsed to, someone else can get it with curl. … | |
Re: To complete the decision suggested from [B]vibhadevit[/B] : [CODE] // just for clarity .... //mysql_connect("localhost", "username", "pass") or // die("Could not connect: " . mysql_error()); //mysql_select_db("YuorDataBaseName"); //mysql_error(); // I don't know why you do this - mysql_error(); // If you want to check for errors you have to put this … | |
Re: First, i think your value in select-options must be a projecIds. [CODE] # while ($row=mysql_fetch_array($result)) { $id=$row["projectid"]; $projectname=$row["projectname"]; $options.="<option value=\"$id\">".$projectname.'</option>'; } [/CODE] Second, when you create users check-box you have to do verification about that the user whether assign to current selected option(project) or not. This you can do with … |
The End.