Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Recent content by raymundpogi

  1. raymundpogi

    Diary of a frustrated programmer

    Toinks! Pano ka niyan maggrow TS kung ayaw mong tumanggap ng criticism. You should view criticism as one of the ways to improve yourself. It's all about how you perceive things :)
  2. raymundpogi

    Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok dito

    Not familiar with Spout so kakacheck ko lang ng docu kanina lang. Anong version ng Spout ang gamit mo? Kasi kung 3.x na, nagbago na yung syntax nila. Read Reader changes here: https://github.com/box/spout/blob/master/UPGRADE-3.0.md#reader-changes Here's a working & modified version of your...
  3. raymundpogi

    How to get permalink of url generated by rewrite rule in Wordpress?

    Meron kasi akong code na <a href="<?php echo wp_login_url( get_permalink() ); ?>"> Login </a> Pero, nagwowork lang siya sa mga normal pages / post na may permalinks. Kapag yung page na generated ng rewrite rules, blank lang ang nirereturn niyan. Baka alam niyo pano...
  4. raymundpogi

    WORDPRESS shortcode alternative

    Like customized form? Gawa ka lang ng sarili mong page template
  5. raymundpogi

    Wordpress Website Error

    Madaming possibilities kung ano ang cause 1. Sa iba na nakapoint yung domain like ginalaw yung CNAME or A Record. - Check DNS setting sa hosting mo 2. Pwedeng dahil sa isang redirect plugin - If di mo alam alin, deactivate mo lang lahat. Then check kung okay na 3. Pwedeng dahil sa hardcoded...
  6. raymundpogi

    PHP Reference symbol (&) in Layman's Term

    Yes! Tama ka. Same din ang behavior kapag ipapass mo sa function.
  7. raymundpogi

    sir pa help

    okay naman sakin sa mobile ah
  8. raymundpogi

    PHP Reference symbol (&) in Layman's Term

    Try this code. <?php class Foo { public $value = 5; } $foo = new Foo; $by_value = $foo->value; $by_ref =& $foo->value; $foo->value = 10; echo $by_value . ' ' . $by_ref; ?> Makikita mo na "5 10" ang result niyan. Kasi kapag nagcopy ka ng 'by value' lang, yung initial value lang makukuha mo...
  9. raymundpogi

    Woocommerce Deposit plugin customization

    Hi guys. Tanong lang baka merong marunong sainyo neto Sa Woocommerce Deposit file na woocommerce-deposits/includes/class-wc-deposits-product-manager.php Mayroong code na ganto ang structure class WC_Deposits_Product_Manager { public static function get_formatted_deposit_amount(...
  10. raymundpogi

    Thread closed

    Thread closed
  11. raymundpogi

    Help naman po para mag autoclick ng button sa blogsite ko

    Because I love vanilla javascript <3 <script> document.getElementById('modal').click(); </script>
  12. raymundpogi

    Codeigniter hmvc problem

    Can you check 'system/core/Exceptions.php' file and search for the code below. I guess you will find it on Line 190 based on the error. public function show_exception(Exception $exception) If you find something like that, can you try changing it to public function show_exception($exception)...
  13. raymundpogi

    how to parse json object in php?

    you're doing it wrong. as far as I know in JSON, name should be wrapped with double quotes. Example: JSON { "name":"John" } Javascript { name:"John" } Thus, your code should look like this [ { "id":1, "username":"admin", "userpass":"admin" }, {...
  14. raymundpogi

    [PHP] Warning: Cannot modify header information - headers

    need mo lang imove sa labas ng <html> tag yung PHP blocks mo na gumagamit ng header function Source: http://php.net/manual/en/function.header.php Edit: In addition, isa sa mga good practices na ilalagay ang PHP blocks before HTML para maiwasan sa future ang gantong error at para na rin di...
Back
Top Bottom