Jump to content

logged_with_bugmenot

Members
  • Posts

    62
  • Joined

  • Last visited

    Never

Everything posted by logged_with_bugmenot

  1. ofcourse its the secret google news works on but i am interested in those ideas which different people have about how it is done
  2. u may use magapie or simplepie to parse rss, the 2nd one is more convinient
  3. Sorry for posting in the wrong place but i trust users of forum [] I want to decode the ranking system of google news, what is their algorithm? What factors they consider in ranking news? what the weightage of each factor? etc Can anyone help please
  4. yeh i have seen the page page before but they have used vb6, i am using vista which does not support vb6, I need a solution developed in a never version of vb thanks though
  5. I want to make an application in visual basic which communicates with mysql database, can anyone help me with any dll or any other application which can be used in this???? any ideas which can help me???
  6. this one will also work "/</?php virtual/(/'//phpincs//stats.php/'/)/; /?/>"
  7. javascript.. at the moment i have this one on my enter image: onclick="window.open('http://blabla.com/', '_blank', 'channelmode=no,directories=yes,fullscreen=no,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,top=0,left=0,height='+screen.availHeight+',width='+screen.availWidth+'');window.focus();" now i need the same popup with a timer between the stated hours :/
  8. hello... because i have no real clue of coding and some guys here can help me, i wanted to ask you something i need a java popup with a timer for my page... for example, the popup should only appear from 24:00 till 06:00 CET... when i click: enter my page, the popup should appear in behind only in this time period... can anyone help me? thanks
  9. if (eregi ("<tag>(.*)</tag>", $line, $out)) { $tag = $out[1]; break; } now $tag is the first occurence of <tag></tag> , u may put this into array and get occurences, the same example is quoted in php manual
  10. I want to search certain sites (remote) for certain type of files. I dont know from where to start. Any ideas, links..........?????????
  11. thanks guys , I found the way out following works for($b=0;$b<$a+1;$b=$b+1) { $item[$b]=new item; for($i=$itemlevel[$b];$i<$itemlevel[$b+1];$i=$i+1) { //if($item[$b]->title!="") $temp=kazmi("title",$pieces[$i]); if($temp!="")$item[$b]->$title=$temp; //if($item[$b]->$title!="") //echo $item[$b]->$title.$b."<br>"; } } echo $item[1]->$title; i thank u all
  12. ok the whole thing is like this: for($b=0;$b<$a+1;$b++) { $item[$b]=new item; for($i=$itemlevel[$b];$i<$itemlevel[$b+1];$i++) { $item[$b]->$title=kazmi("title",$pieces[$i]); } } echo $title[2];///but this is not printing anything but when i tried to print it before closing last 2 brackets, it worked- why it isnt printing here
  13. Hi, I have following problem for($b=0;$b<$a+1;$b=$b+1) { $item[$b]=new item;////I even initialzed it outside for loop but still problem remains for($i=$itemlevel[$b];$i<$itemlevel[$b+1];$i=$i+1) { //if($item[$b]->title!="") $item[$b]->$title=kazmi("title",$pieces[$i]); if($item[$b]->$title!="")echo $item[$b]->$title"<br>";//It prints here but.... } } echo $item[$b]->$title"<br>";//It is not printing here???????? Can anyone please tell me how to overcome this problem
  14. Hmm, it outputs "Th e number of Records 3" this is weird
  15. Yeah, but I want to add it through the script this was through phpmyadmin really odd
  16. I ran INSERT INTO users_logins (user_id, user_password) VALUES ('john', PASSWORD('smith')) and it added the user: Full Texts user_id user_password Edit Delete cross 46c3909c48c7e704 Edit Delete sam 7888350b26333e97 Edit Delete john 1dacdbf749f8f2a9 somewhere it mustn't be inserting anything.
  17. I made the action the same script (main.php) and also changed the query with the most current line you gave me and it did not return the error and the echo was: INSERT INTO users_logins (user_id, user_password) VALUES ('john', PASSWORD('smith')) also the tables do exist because I'm able to login using the users i created through phpmyadmin sql interface... very odd...
  18. Still no go, I thought that would be right to. *looks for something to blame*
  19. Ah, I tried adding that but didn't help and my login script doesn't specify a action and continues to work. I made another script which directly inserts a name and password with no form and that worked so I think it has to be something with my syntax, any other ideas?
  20. Hi guys another signup script, I've been reading here for a few hours now and still can't solve my problem so I decided to post here. Anyways the problem is the data isn't getting to the mysql here's my code by the way the signup is more of a add user script and is only available once someone has signed in: http://privatepaste.com/d915cqIufh
  21. Sorry, I couldn't resist replying. I've been looking for such a solution, too. For your information, makeshift_theory, check out this comment from the link you provided: [code]Just remember: SSL FTP != SFTP Differences: an SSL FTP connects on port 990, and you need an ftp server which will support this (seems like none in the SuSE linux distribution do). Even if you get this function to work, and it connects ok to a normal FTP server on port 21, data WILL NOT BE ENCRYPTED. If you don't believe me, go sniff it yourself![/code]SSL is different from SSH(2). SFTP uses SSH.
  22. I tried this but it doesn't seems to work: index.php: <?php $title = "The title"; $content = "blablabla"; include ('template/main.php'); ?> template/main.php: <html> <head> <title><?php echo $title; ?></title> </head> <body> <?php echo $content; ?> </body> </html>
×
×
  • 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.