Jump to content

deepson2

Members
  • Posts

    260
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

deepson2's Achievements

Regular Member

Regular Member (3/5)

0

Reputation

  1. Thanks for your reply ChemicalBliss, But my link titles are going to be changed every time so i can not match it with the exact link name. Any more suggestion?
  2. Hello all, I am storing data from csv file to database. For one of the column i am storing description and this description has a few links like this- $string = " Lorem ipsum dolor sit amet,www.goggle.com.Aliquam pretium ullamcorper urna quis iaculis. Etiam ac massa sed turpis tempor luctus. Curabitur sed nibh eu elit mollis congue. Praesent ipsum diam, consectetur vitae ornare a, aliquam a nunc. In id magna pellentesque tellus posuere adipiscing. Sed non mi metus, at lacinia augue. Sed magna nisi,www.facebook.com,mollis sed nunc. Etiam at justo in leo congue mollis. Nullam in neque eget metus hendrerit scelerisque eu non enim. Ut malesuada lacus eu nulla bibendum id euismod urna sodales. "; So this description has two links goggle.com and facebook.com Now my questions are- 1) Can we store these links as links only into the database? 2) while selecting this row can i show the link as link only so user can click on this particular link and use it probably? Thanks in advance
  3. Thanks for your reply Lukeidiot, If we consider the exact code yours I am getting mail for the last recipient only(Email3@gmail.com). What should i try now?
  4. I have tried the above solution but its not working. Tried this also mail($recipient, $subject, $message, 'CC: eavesdropper@example.com'); mail($recipient, $subject, $message, 'cc: eavesdropper@example.com'); How can i get CC using php mail function? I don't want to use header because header is not working for me(And i have tried it already) Thanks in advance.
  5. Thanks for the reply to both of you. Yes i was thinking something similar like if i can check the categories of what user has seen the videos before so i can store them and next time show them the most recent videos belong to that particular category. Anyways i have got the logic. Thank you.
  6. But I don't think we need to activate any subscription for it or something? because whatever we checks like php tutorial video and then we logged out and when we comes back and do logged in again it ll show more videos related to php tutorial. what you think?
  7. Thanks for your reply mchl. Could you please elaborate your point here-
  8. Hello, I was just wondering that how youtube 's "Recommended for you" logic works. like it checked all the urls /videos you have watched last time(logged in time) and next time when users logs in, it ll show him/her the related those videos(probably most popular) he/she had watched earlier. i was just wanted to know its rough idea that how it works. Can anyone tell me how it works? Thanks in advance.
  9. I want to check my values are numeric or not. i have been loosing my patients for why my for loop is not working here. :'( it checks only first value and gets stopped later. Here is my code js function NumericVal(fieldList1) { var field1=new Array(); field1=fieldList1.split("~"); //alert(field1); var counter=0; for(i=0;i<field1.length;i++) { //alert(document.getElementById(field1[i]).value); if((document.getElementById(field1[i]).value !="") && ( IsNumeric(document.getElementById(field1[i]).value)==false)) { document.getElementById(field1[i]).style.backgroundColor="#FF0000"; counter++; } } //i++; if(counter > 0) { alert("Please enter only numeric values"); return false; } else { return true; } } function IsNumeric(strString) // check for valid numeric strings { var strValidChars = "0123456789.-"; var iChars = "`~=!@#$%^&*()<>+_[]{}\\;:\"\'?\/"; var strChar; var blnResult = true; if (strString.length == 0) return false; // test strString consists of valid characters listed above for (i = 0; i < strString.length && blnResult == true; i++) { strChar = strString.charAt(i); if (strValidChars.indexOf(strChar) == -1) { blnResult = false; //alert("Please enter only numeric values"); } } return blnResult; } then calling it here var checkValidation1= NumericVal('units~units_size'); if((checkValidation1==true) { //do updation } Can anyone why my for loop is not working? Thanks in advance.
  10. Thanks a lot i wanted something similar but the problem is if i have following result for the first time i get the following o/p- Now if i added new name "sachin" it gives me me result like this it should append only sachin not the entire query again. whats the problem can anyone please tell me. and i was trying something to do this without Jquery also. Here is the code which i found on the net <html> <head> <script> /* Auto Refresh Page with Time script By JavaScript Kit (javascriptkit.com) Over 200+ free scripts here! */ //enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59 // now we are considering the time here is 30 sec. var limit="0:30" if (document.images) { var parselimit=limit.split(":") parselimit=parselimit[0]*60+parselimit[1]*1 } function beginrefresh(){ if (!document.images) return if (parselimit==1) window.location.reload() else{ parselimit-=1 curmin=Math.floor(parselimit/60) cursec=parselimit%60 if (curmin!=0) curtime=curmin+" minutes and "+cursec+" seconds left until page refresh!" else curtime=cursec+" seconds left until page refresh!" window.status=curtime setTimeout("beginrefresh()",1000) } } window.onload=beginrefresh </script> </head> <body> <center><h1>****Test****</h1></center> <div id="random"> <?php ini_set( "display_errors", 0); ini_set("display_errors",0); $link = mysql_connect('****', '***', '***') or die('Could not connect: ' . mysql_error()); //echo 'Connected successfully'; mysql_select_db('***') or die('Could not select database'); $sql = mysql_query("Select ename from table1"); $record_count=mysql_num_rows($sql); //Display count......... if(mysql_num_rows($sql) > 0){ while($row = mysql_fetch_array($sql)){ echo $row['ename']; echo "<br/>"; } } @mysql_free_result($sql); //echo $record_count; ?> </div> </body> </html> But problem with this page is, i can actually see the page is getting refreshed though i am not clicking on the refresh button and another thing is i want to refresh only one div not the whole page.
  11. ok, i want to do something like this- 1)Get one page where my select query result is there. 2)Refresh(or check) it in every 2 sec, and if new result is exactly the same as previous result don't do anything. 3)If you get new entry(record) result then show(refresh) it immediately without refreshing the page . But i really really don't know how i can do this with AJAX. Can anyone please guide me in right direction.?
  12. I have been searching around but not able to find any related link on this.can anyone please give me any similar link so i can check it and ll get some idea probably.
  13. Thanks for your reply mjdamato , Could you please elaborate more? As you mean i should take one php page(lets say result.php) and i need to refresh this page after n secondand i want to show that result on another page(lets say index.php) so you think this ll work. is that something you are suggesting?
  14. Thanks for your reply. but that link didn't give me any direction for my this question ->
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.