- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
14 Posted Topics
Hello to all, I am working on PHP, HTML, CSS and Joomla since 6 years, but now a days in INDIA many companies are looking for the Drupal Developers, I am lacking skills in Drupal, so can any one guide me to learn Drupal and start building websites using Drupal. …
Hey this should be like this [code] <?php function show_table() { ?> <table border="1" cellspacing="2" cellpadding="2" style="background-color:#33990f;border-width:2px;width:100%;"> <tr> <th><font face="Arial, Helvetica, sans-serif";font color="#FFFAFA">Organization Name</font></th> <th><font face="Arial, Helvetica, sans-serif";font color="#FFFAFA">ID</font></th> </tr> </table> <?php } ?> [/code] Hope this will help you
[QUOTE=navi17;1373904]How to transfer files from one server to another in php? Any ideas?[/QUOTE] Hi, check this [url]http://www.6thorigin.com/php-coding/file-transferring-or-uploading-from-one-server-to-other-server[/url] let me if this helps you or not
Hi, Try this [CODE] $target_path = $target_path . basename($uname); $newname = dirname(__FILE__).'/images/'.$filename; //Check if the file with the same name is already exists on the server if (!file_exists($newname)) { //Attempt to move the uploaded file to it's new place if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) // your upload code here... } } [/CODE]
Hi try this may be this can helps you [CODE] $target_path = '/images/'.date('Y-m-d'); if(!is_dir($target_path)){ mkdir($target_path,0777); } if( !is_writable( $target_path )) { chmod($target_path,0777); } [/CODE] let me know if this helps you or not
Hey, try to read this and implement on your script.... [url]http://www.createafreewebsite.net/phpmysql/update.html[/url] Hope this can help you....
Hello Scaasiboi, In the above, the mysql_query() function is sending the specific query to the database and returning a 'resource identifier', which is being set as the value of $query. These are not the results themselves -- if you echo $queryat this point, you'll get 'Resource id #x'. The mysql_fetch_array() …
Hello Everyone. To whom don't know about me, I'm Nanda Kishore. I live on Secunderabad, India. I have completed MCA and currently working as a PHP Developer. I'll always give warm welcome to all, who make a help to improve my skill on PHP
Hey try this, for all option should be like this.... [CODE] <option value="12th" <?php if ($f1 == '12th') { echo 'selected="selected"';}?>>12th</option> <option value="Aviation" <?php if ($f1 == 'Aviation') { echo 'selected="selected"';}?>>Aviation</option> <option value="B.A" <?php if ($f1 == 'B.A') { echo 'selected="selected"';}?>>B.A</option> <option value="B.Arch" <?php if ($f1 == 'B.Arch') { echo …
Yes, you can use TEXTAREA inside that div e.g. <textarea cols="40" rows="5" style="background:none; border:medium none;"></textarea>
Hey try this one, <script type="text/javascript"> function checked_room() { // if the check box is not an array use this if (!document.form1.SelectRoom.checked) { alert("You need to check a room inorder to book!"); return false; } else { return true; } // if the check box is an array use this …
Yes, You can get the result from CURL.... Below is the example to get weather information from google // initializing connection $curl = curl_init(); // saves us before putting directly results of request curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE); // url to get curl_setopt($curl, CURLOPT_URL, 'http://www.google.com/ig/api?weather=sydney&h1=english'); // timeout in seconds curl_setopt($curl, CURLOPT_TIMEOUT, 20); …
Hey, 1. Go to Control Panel at Right top corner 2. Click the Edit Profile Picture at left side to edit profile picture 3. Click the Edit Avatar at left side to edit profile avatar Hope this can help you :)
Yes, Instead of MSN messenger you can user the Pidgin ... using this software you can login MSN, AOL, Yahoo, Gtalk and so on...
The End.
fornandakishore