Recent content by mRAza

  1. M

    Anyone out there from old members?

    Hi folks, great to be here again :)
  2. M

    i want to convert a php code !

    <?php $categories_to_show = array(1,2,3) // Categories ID's $this_category = get_category($cat); if(in_array($this_category->category_parent, $categories_to_show)) include (TEMPLATEPATH . '/cat-featured.php'); ?>
  3. M

    My Success story and Wjunction Part

    Thank you guys for all your kind words, Cheers
  4. M

    Looking for bootstrap tutorial!

    If you know html/css than its pretty easy to follow docs and in my opinion there is nothing better than these docs : Getting started · Bootstrap
  5. M

    I need coding in PHP, remove symbols in Title

    try this, noticed space after [3].' ??? : return $matches[3].' '.$matches[2].''.$matches[1];
  6. M

    I need coding in PHP, remove symbols in Title

    hm, For two spaces you can try to remove one of space between commas in title_callback function and see if works, .' '. to .''.
  7. M

    My Success story and Wjunction Part

    heartodark Thank you for your kind words, and I hope that too but mostly we are always lazy lol VersaceBoys Thank you too dear. msk19994 Yea its really hard to trust people around. I have been scammed various times at start (Elio one of the example here on Wjunction) but it did not mean we...
  8. M

    I need coding in PHP, remove symbols in Title

    Open /engine/inc/addnews.php At the end of file before ?> add this function // clean title function my_clean_title($title) { return preg_replace_callback('#[^a-zA-Z0-9]#', 'title_callback', $title);} // the callback function for title function title_callback ($matches) {...
  9. M

    My Success story and Wjunction Part

    Ar!yaN Thanks dear you are the special one, dont give up on your coding stuff, be in touch ;) filegrasper Much thanks for your kind words, To success. ausafali Thanks , Best of luck to you as well Raz3r That's good to hear, Congrats on your firm as well, Of course we have learned a lot of...
  10. M

    My Success story and Wjunction Part

    Thank you guys for all your kind words and I wish you all the best.
  11. M

    I need coding in PHP, remove symbols in Title

    I dont have access to DataLife Engine, post your files on pastebin and link in thread. engine/modules/addnews.php engine/inc/addnews.php one file is for admin panel and other for user.
  12. M

    My Success story and Wjunction Part

    @Rox Yea sure buddy that was the only reason to open this thread so guys here dont get disappointed, who are struggling online from years. Of course it takes time but never give up.... and much thanks for your kind words. Baraka haha right so you actually remember that domain too, that's...
  13. M

    My Success story and Wjunction Part

    Hello guys ! Its been long time I never participated much on wjunction due to my work. I wanted to thank you all the staff, clients and special guys who helped me to reach on this position. I was struggling online since 2008 to make some living out of basic coding stuff and by time I kept...
  14. M

    I need coding in PHP, remove symbols in Title

    If you are looking for a PHP solution, here it is: $title = 'The.Name.Of.Title [2010]-Post'; // pattern $pattern = '#[^a-zA-Z0-9]#'; $newTitle = preg_replace_callback($pattern, 'callback', $title); // the callback function function callback ($matches) { return $matches[3].'...
  15. M

    what kind of app - script from it i can get this info in auto way !!!

    I dont think u will find such app/script (unless someone has shared a code) , you can choose one of these languages to accomplish this.. PHP , Java, .NET, Flex , cURL etc... Or hire someone to do that for you by posting in Services Section.
Back
Top