- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
38 Posted Topics
Re: The "headers already sent" error is usually caused by having white space before or after the opening and closing PHP tags (<?php . . . ?>). Have you recently edited any files? and alsu use top of page <?php ob_start(); ?> it remove all header error from form | |
Re: what is error on page i am give a link that helpful to you visit here [url]http://www.ibdhost.com/contact/[/url] | |
Re: this all links are good for you here how to learn php how to run program all things are available. [url]http://php.net/index.php[/url] [url]http://php.net/downloads.php[/url] [url]http://www.w3schools.com/PHP/[/url] ![]() | |
Re: i think drupal is awesome but joomla! is simply the best. Joomla is much nicer in design | |
Re: I think facebook can be used for social media marketing, which is different to seo. | |
Re: I know PHP,Ajax,Javascrip,HTML and little know asp.net | |
Re: i think quality and quantity of Back-Links that are belongs to your site these are more important in building a good PR for site. | |
Re: Have you actually tested the RAM If not, you could try this: hcidesign.com/memtest | |
Re: really its great information, thanks to sharing this tips | |
Re: use this example for uploading <form enctype="multipart/form-data" action="__" method="post"></form> <?php $pn = $_FILES[photo][name]; $pt = $_FILES[photo][type]; $ps = $_FILES[photo][size]; $ptmp = $_FILES[photo][tmp_name]; $query = "insert into table_name values('','$pn','$pt','$ps')"; $result = mysql_query($query) or die('Error!'); if($result){ move_uploaded_file($ptmp,"photos/$pn"); } ?> | |
Re: i am use this code to connection <?php mysql_connect('localhost','root','') or die('Not connected to server'); mysql_select_db(db_name) or die('Not selected database'); ?> | |
Re: see this example it very simple code to connection [CODE]<?php mysql_connect('localhost','root','') or die('Not connected to server'); mysql_select_db('db_name') or die('Not selected DB'); ?>[/CODE] | |
Re: i think example may help you <?php $id = $_GET[id]; $q = "delete from user where id='$id'"; $r = mysql_query($q); if($r) header('Location:--.php'); ?> | |
Re: can you show your full code, how to you insert values in database it may be some error show due to header so when you use header type top of page <?php ob_start(); ?> it remove all headers error | |
Re: nice script thanks to share us but this script not more secure | |
Re: i think the headers already sent error is usually caused by having white space before or after the opening and closing PHP tags (<?php . . . ?>). and you type top of page <?php ob_start(); ?> | |
Re: try this function i think its useful to you function adv_count_words($str) { $words = 0; $str = eregi_replace(" +", " ", $str); $array = explode(" ", $str); for($i=0;$i < count($array);$i++) { if (eregi("[0-9A-Za-zÀ-ÖØ-öø-ÿ]", $array[$i])) $words++; } return $words; } | |
Re: i think this example may help you create connection a other file coneection.php like this and include in this file <?php mysql_connect('localhost','admin','password') or die('Not connected to server'); mysql_select_db('db_name') or die("NOT selected DB"); ?> <?php include('connect.php'); $fname = $_POST['fname']; $email = $_POST['email']; $lname = $_POST['lname']; $address1 = $_POST['address1']; $query = "insert … | |
Re: i think this example may help you //this is where the creating of the csv takes place $cvsData = $fn . "," . $ln . "," . $address . "," . $xyz . "," . $asd ."\n"; then we open the file: $fp = fopen("formTest.csv","a"); // $fp is now the … | |
Re: i think this code help you, here '' use for id which auto increments $query = "insert into user values('','$username','$password','$gender','$byear')"; $result = mysql_query($query) or die('Error!'); if($result){ echo " NAME :- $username"; } | |
Re: use this function to write your navigation i think it help you function buildNav() { global $_SERVER['PHP_SELF']; $url = array('index'=>'Home','about'='About','services'=>'Services','portfolio'=>'Portfolio','contact'=>'Contact','support'=>'Support'); $myNav = "<ul>" foreach ($key=>$value in $url) { if($_SERVER['PHP_SELF'] == "/$key.php") { $active = ' class="active"'; } else { $active = ""; } myNav .= "<li$active><a href='/$key.php' title='$value'>$value</a></li>"; } $myNav … | |
Re: I completely agree. Not sure why people here are complaining about pagerank where it should be about rankings. | |
Re: i think this code help you, it fetch data from database <?php $q = 'select * from table_name'; $r = mysql_query($q); ?> <table> <tr> <th>Name</th> </tr> <?php while($row=mysql_fetch_object($r)){ echo "<tr><td><b>$row->name</td> ?> | |
Re: i think this code help you First send the variable to a script <form method="post" action="array_script.php"> 0.<br/> <input type="text" name="first_name"/><br/><br/> <input type="submit" name="submit"/> </form> Move $_POST variable contents into $_SESSION I will always need to call "session_start()" to use $_SESSION <?php session_start(); $_SESSION['first_name'] = $_POST['first_name']; ?> Above I called the … | |
Re: i think you must be try booting into safe-mode. If they work, then you have a program which is making the usb controllers glitch. Also, try using a usb harddrive. If the HDD doesn't work either, then you can be sure it's a problem with the usb drivers. | |
Re: this link may helpful to you http://www.webrankinfo.com/english/pagerank/increase.php | |
Re: i am not sure but i think it may help you do a repair of the O.S.and you won't get the error message again otherwise see this steps 1. Click Start – Run – Type “regedit” and press enter. 2. Navigate to [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup] HKEY_LOCAL_MACHINE \Software \Microsoft \Windows \CurrentVersion \Setup 3. … | |
| |
Re: Not sure but i think this code useful to your query IP address using HTTP_X_FORWARDED_FOR. And if this is also not available, then finally get the IP address using REMOTE_ADDR. function getRealIpAddr() { if (!empty($_SERVER['HTTP_CLIENT_IP'])) //check ip from share internet { $ip=$_SERVER['HTTP_CLIENT_IP']; } elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) //to check ip is pass … | |
Re: see this example and implement to your program Create a PNG image with PHP # Compile PHP with bundled GD library: cd /tmp tar xyf /usr/local/src/php-4.3.1.tar.bz2 cd php-4.3.1 './configure' '--with-gd' '--with-mysql=/usr/local' \ '--with-mhash=/usr/local' '--with-mcrypt=/usr/local' \ '--enable-sockets' '--enable-trans-sid' '--prefix=/usr/local' \ '--with-readline=/usr' '--with-regex=system' '--with-zlib' \ '--enable-force-cgi-redirect' '--enable-track-vars' \ '--with-gettext' make cp sapi/cgi/php … | |
Re: Check this site: [url]http://www.badflash.com/main.html[/url] if the BIOS was missing, so would be any messages. Please try to be specific about the exact text of the message you see. Did you try using the original keyboard again? | |
Re: i think if any anti virus run before remove it and also from registry some time some file stored here than your installation may be successful | |
Re: This gets a little more complicated, but you could try the instructions here: [url]http://support.microsoft.com/default.aspx?kbid=318378[/url] | |
Re: i think your problem can solve here [url]http://www.windows-vista-tips-and-tricks.com/windows-vista-problems-and-solutions.html[/url] | |
Re: Either CNAME or A-record is fine but you friend will need access to the dns records of the domain to be able to make any either change. | |
Re: i think this link help you here you see how to assemble powerful PC [url]http://ravisblog.com/how-to-assemble-a-pc/[/url] |
The End.