Search:

Type: Posts; User: dipika; Keyword(s):

Search: Search took 0.01 seconds.

  1. Fatal error: Call to a member function query() on a non-object in D:\wokspace\rts_sea

    <?php
    class DB{

    private $link;

    public static function connect($host,$user,$passwd,$dbname) {
    $db=new DB();
    $db->link = new mysqli($host,$user,$passwd,$dbname);
    return $db;
    }
  2. Replies
    22
    Views
    28,602

    Fatal error: Call to a member function query() on a non-object in D:\wokspace\rts_sea

    <?php
    class DB{

    private $link;
    public function DB() {
    $db = new DB();
    }
    public static function connect($host,$user,$passwd,$dbname) {
    //$db=new DB();
    $db->link = new...
  3. Thread: matching url

    by dipika
    Replies
    1
    Views
    1,537

    matching url

    i need regex to find all the urls from a page
  4. Replies
    22
    Views
    28,602

    thanks a lot for your help.finally i am able to...

    thanks a lot for your help.finally i am able to solve my problem. this thread is really helpful
  5. Replies
    22
    Views
    28,602

    Thanks a lot for your concern. whats the name of...

    Thanks a lot for your concern. whats the name of the thread
  6. Replies
    22
    Views
    28,602

    I followed the link above and this thread was...

    I followed the link above and this thread was really helpful and finally i was able to develop a query like this:
    SELECT * FROM `page` AS a1 LEFT JOIN `page_tag` AS a2 ON a2.page_id=a1.id LEFT JOIN...
  7. Replies
    22
    Views
    28,602

    when we will get free please help me. you can...

    when we will get free please help me. you can mail me at dipika_44@live.com
  8. Replies
    22
    Views
    28,602

    $len=strlen($word); for($i=0;$i

    $len=strlen($word);
    for($i=0;$i<=$len;$i++)
    {
    if($word[$i]=='(' )
    {
    $bracket[]=$word[$i];
    }
    if($word[$i]=="+" or $word[$i]=="|" or $word[$i]==$word[$len])
    {...
  9. Replies
    22
    Views
    28,602

    Actually ,user inputs the search statement. then...

    Actually ,user inputs the search statement. then how do I parse input string .
  10. Replies
    22
    Views
    28,602

    yes,it would be really helpful. Actually i want...

    yes,it would be really helpful. Actually i want to use user input and i tried to parse the input and finally created a query from that but its not working.
    Thanks a lot
  11. Replies
    22
    Views
    28,602

    And operator

    Thanks for the refered thread. but i am still confused in "AND" searching.
    suppose user input is "(events And news) or local".
    i wrote a sql like this:
    SELECT * FROM `page` AS a1 LEFT JOIN...
  12. Replies
    22
    Views
    28,602

    simple search engine

    I am developing a simple search engine using php.
    what is the logic behind searching with "AND" and "parenthesis" advance search
Results 1 to 12 of 12