- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 2
- Downvotes Received
- 8
- Posts with Downvotes
- 7
- Downvoting Members
- 6
44 Posted Topics
Hi Guys, I have a small question. Think Person A is yahoo email user. Person B is Gmail user. Person A sent an email with 'Document01.docx' to Person B. Now, which email provider hosting Document01.docx? Yahoo or Gmail? Please explain what is happening to email attachments? | |
Re: Joshi, It seems some thing went wrong with your internet connection not with your laptop. First of all, it is better to test your internet connection's speed. You can check out the speed of your internet connection from here http://speedtest.net/ Please let me know the results. Then I can guess … | |
Hi All, I want to know wheather I can update (add new data) to a row in mysql database table without replacing existings data. Ex : There is a row that contains, ID Name City Groups 1 John Colombo gamers I want to add 'programmers' to John's Groups. ID Name … ![]() | |
Re: Are you using a custom coded website? | |
Hello Friends, I want to set my wikipedia page next to domain name in Google result (see the attached image). [Click Here](http://i.imgur.com/WNqhOir.png) How can I do that? | |
Hi All, Please study the following code. ## HTML ## <div id="welcome"> Welcome Message </div> <div id="Inquiry"> Inquiry Form </div> <div id="products"> Products </div> <div id="footer"> footer </div> CSS #welcome{ background-image:url(../images/company.jpg); background-size: 100% 100%; width:100%; height:600px; } #inquiry{ margin-top:600px; width:100%; height:500px; background-image:url(../images/light_grey.png); } #products{ margin-top:1100px; // (margin-top of inquiry + … | |
Re: Please explain eddiekat4u. Your database containing link of video files or containing video files itself? | |
Hi Friends, First of all, I would like to Wish you a Happy & Christ centered Christmas to you all. I am coding a forum to increase my knowledge. In New Article Creation, I want to restrict if user post a thread within last 1 minute, let him or her … | |
Hi, I want to show one place in my country on google map in my web page. But currently that page is not in the Google Maps and also I don't want to add it to the google maps. What i want is mark that place temporary in google maps … | |
Re: You can use `ON DELETE CASCADE` option in mysql By using this, on deleting the record from parent table removes the records from child tables. Please check this article for more details and for examples http://dev.mysql.com/doc/refman/5.5/en/innodb-foreign-key-constraints.html | |
Hi Friends, I want to add this css style to existing template. .citems { font-family: 'Open Sans', sans-serif; font-size: 14px; color: #000; line-height: 20px; border-bottom-width: thin; border-top-style: none; border-right-style: none; border-bottom-style: dotted; border-left-style: none; border-top-color: #000; border-right-color: #000; border-bottom-color: #333; border-left-color: #000; text-indent: 10px; } @font-face { font-family: 'Open Sans'; … | |
Re: http://tutorialzine.com/2009/10/cool-login-system-php-jquery/ | |
Hi All, These days I'm busy with the PHP Photo Gallery Solution. In this system Admin can upload images and its' descriptions. When user point mouse on the image, tooltip will appear. That tooltip windows contain images' description. My problem is, Image Details are stored in `photos` table. And its' … | |
Hi, Is there any tool for check how good my web page is for Search Engine ranking? | |
Re: Create file called `menu.html` and save above code to that file. And include that menu.html file to every page that you want to put menu. | |
Hi Friends, Most of our school's old boys are in abroad. So there have no chance to get updated about our school's cricket matches. So I am willing to have a real time cricket scoring system. Do you know any free Cricket Scoring system that can display a scores in … | |
Hi Friends, I am developing a Music download system. I thought to have two database tables. One for songs and other one is for artists because some songs have two or more artists. Then I created two tables call `songs` and `songartists`. Following are the structures of that tables. `songs` … | |
Hi all, I going to create a php web site in English. I want to have a another language in my site which not in Google Translator. How can I do this in PHP. ![]() | |
Hi, I have created a joomla web site with 80 articles under the 6 categories. And also I have submitted my web site to Google via Google Web Master Tools. How can I list search results like this? <broken link removed> | |
Hi guys, This is related with my last question on 'Store data in PHP page' article. However I saved that things in `settings.php` Such as, *settings.php* <?php //SITE URL $url = "Sample.com;" //SITE NAME $sitename = "Sample LLC"; ?> I have included that settings.php file to index.php But when I … ![]() | |
Hi friends, In my site, simply I want to save the configuration data, site details in the php file. For an example, in vBulletin they are using config.php file to save all the general details. // ****** DATABASE TYPE ****** // This is the type of the database server on … | |
Re: Try this and tell me. If this fail, I will give you another solution. .ring{ float: left; height: 58px; width: 58px; font-size: 24pt; font-weight: bold; vertical-align: middle; background-image: url("images/ring.png"); } .question{ float :right font-size: 24pt; float: left; height: 58px; } ![]() | |
Hi All, As usual I here with a PHP & MySQL problem. Most of you know, I am developing Music Download system. Today I have created Widget to display last 5 songs. <?php include('datab.php'); $get = "SELECT * FROM `songs` ORDER BY `id` DESC"; $getres = mysql_query($get) or die(mysql_error()); if(mysql_num_rows($getres)> … | |
Re: Ask Hostgator to set your own email address to default email address of a hosting account | |
Hi All, I have developed php login system. If user successfully logged in system will create a session call, `$_SESSION['username'];` Now I want to redirect user, if not logged in when try to view specific page. Please help me to write a code. I already wrote a code, but it … | |
Hi Guys I wrote simple PHP script for get value from URL and check similar values from the database. This is a code <?php include('../../datab.php'); if(!empty($_GET['ip'])) { $ip = $_GET['ip']; $ipcheck = mysql_query("SELECT * FROM `report` WHERE `ip`='$ip'"); if(mysql_num_rows($ipcheck)> 0) { while($row = mysql_fetch_array($ipcheck)){ ?> <body> <p>Report ID : <?php … | |
Re: Did you change any hard coded file? | |
Re: use this plugin/ component http://extensions.joomla.org/extensions/style-a-design/templating/11173 | |
Hi Friends, There is a variable call 'ReportID' Its values are normally in this format. 'MPS141', 'MPS142'.... 'MP' means company name. 'S' means, Songs and '14' means year 2014 and other part is auto incrementing data. I want to get onlye that value. Is there any function in PHP ? … | |
Hi Guys, I am developing a Music Database system. This is a 'Song.php' page. It will be a Detailed page of a each song. Ex : song.php?id=1 <?php if(!empty($_GET['id'])) { $sid = mysql_real_escape_string ($_GET['id']); } // if song id is null, user will redirect to the full song list else … | |
Hi All, I am looking for a software that can be used for scheduling (Diary). But it must be a centralized one because 3 users wants to use it. Please help me to find a suitable software. Thank You all | |
Re: Try this <html> <head> <script type="text/javascript"> function stateChanged(){ if(httpxml.readyState==4){ var myObject = eval('(' + httpxml.responseText + ')'); //var myObject = httpxml.responseText; //document.getElementById("display").innerHTML=myObject; var msg=myObject.value[0].message; if(msg.length > 0){document.getElementById("msg").innerHTML=msg;} else{document.getElementById("msg").style.display='none';} var str="<table width='50%' bgcolor='#ffffff' align=center><tr><th>Name</th><th>Idea</th></tr>"; var color="#f1f1f1"; for(i=0;i<myObject.data.length;i++) { if((i%2)==0){color="#ffffff";} else{color="#f1f1f1";} str = str + "<tr bgcolor="+color+"><td>" + myObject.data[i].ind_reg_id + " </td><td>"+ … | |
Re: $query = "SELECT `id`, `name` FROM `tableName`"; $result = mysql_query($query) or die(mysql_error()."[".$query."]"); <select name="dropdown"> <?php while ($row = mysql_fetch_array($result)) { echo "<option value=".$row['id']."'>".$row['id'] . " - " . $row['name']."</option>"; } ?> </select> | |
Hello my dear Brothers and sisters, I am going to introduce myself after publishing my very first thread. When I read the threads and comments, I have noticed one thing. It is, all are working as a family. Yes. Thats why I love this place. And thats why I call … | |
Hi All, These days I am implimenting a Hotel Room Reservation system. I have a small problem in Check Availability' page. below I listed my database structure. *rooms* rid int(11) <--- AI name varchar(255) ppn varchar(50) facilities mediumtext *reservations* resid int(11) <--- AI rid int(10) arrival date departure date System … ![]() | |
The End.