Recent content by yoshuame

  1. Y

    FRP tool

    Please help, hanggang ganito lang siya. May Samsung USB driver na rin installed. Samsung A23 cp. Any idea po? TIA!
  2. Y

    Web hosting PHP project

    I cant view my Helpp!! project upon creation of website. (I haven't upload my files in File manager)
  3. Y

    RE: HELP how is the process of sharing my PHP program to other pc in a network.

    I've tried the Firewall settings (inbound rules) but it only shows the text format(no bg picture and designs) of my program upon accessing my IP address. It is also not opening when I input the user and password. Hope you can help.
  4. Y

    HELP! PHP Dropdown list value from datatable to textbox

    The discount value is already in the table just like in the picture
  5. Y

    HELP! PHP Dropdown list value from datatable to textbox

    Just want to show the designated discount value of supplier to textbox
  6. Y

    HELP! PHP Dropdown list value from datatable to textbox

    <?php if(isset($_GET['id']) && $_GET['id'] > 0){ $qry = $conn->query("SELECT * from `po_list` where id = '{$_GET['id']}' "); if($qry->num_rows > 0){ foreach($qry->fetch_assoc() as $k => $v){ $$k=$v; } } } ?> <style>...
  7. Y

    RE: Dropdown list value showing in textbox in PHP

    Hi, can you still help me on this?
  8. Y

    RE: Dropdown list value showing in textbox in PHP

    <?php if(isset($_GET['id']) && $_GET['id'] > 0){ $qry = $conn->query("SELECT * from `po_list` where id = '{$_GET['id']}' "); if($qry->num_rows > 0){ foreach($qry->fetch_assoc() as $k => $v){ $$k=$v; } } } ?> <style>...
  9. Y

    RE: Dropdown list value showing in textbox in PHP

    <?php if(isset($_GET['id']) && $_GET['id'] > 0){ $qry = $conn->query("SELECT * from `po_list` where id = '{$_GET['id']}' "); if($qry->num_rows > 0){ foreach($qry->fetch_assoc() as $k => $v){ $$k=$v; } } } ?> <style>...
  10. Y

    RE: Dropdown list value showing in textbox in PHP

    Thanks, but I'm having a problem where I can put it in my current code (the first code)
  11. Y

    RE: Dropdown list value showing in textbox in PHP

    Need help po, May designated po discount sa bawat supplier, need ko lang po mapalabas sa textbox yung value upon selecting supplier. <label for="supplier_id">Supplier</label> <select name="supplier_id" id="supplier_id" class="custom-select...
  12. Y

    PHP PHP additional Form

    Thank you for your help. But I need a form like Purchase order with different formula for the cost, That is why I need a different database also. Maybe this can help you to more to understand. I already searching for a month in YøùTùbé how to do it but there is no such thing. If you have time it...
  13. Y

    PHP PHP additional Form

    Need help! I'm a newbie. I downloaded this source code online. I only want to add additional form in the panel (Shipments and Completion). Nag copy lang po ako ng code nung Purchase order. Pero upon adding sa Creat new button sa order_item na table pa rin sya nag sasave hindi sa...
Back
Top