Recent content by Mrkmrk

  1. M

    Closed Smadav Antivirus 2020 Pro + Serial Key [100% Working]

    2019 pa sir ung smadav, BTW thanks 😃😃😃😃
  2. M

    Closed Paano mag concatenate?

    Ampersand (&). &= for concatenation.
  3. M

    Closed Cannot create file c :\ xampp xampp control ini access denied

    Try searching "take ownership of hdd". Kung ayaw parin try to use wamp instead.
  4. M

    Closed Android development

    Android Studio - Java Visual Studio - Xamarin Text Editors - Ionic XCode - Developing on Mac At napakadami pang iba ...
  5. M

    Closed Relax brain muna ako

    yung function mo nasa addsample.php? lagyan mo action attribute yung form mo. ex: <form action="addsample.php" method="post"> ..... <button> Add New User </button> </form> kung ang goal mo lang naman mapunta sa ibang page gamit button: <a href="addsample.php"> <button> Add New User </button> </a>
  6. M

    Closed Css hindi nagwowork saakin help po

    Kung gumagana dati at yung panibagong changes lang yung di gumagana, clear cache mo lang browser mo
  7. M

    Closed Help sa copy to clipboard code

    No problem. :)
  8. M

    Closed Help sa copy to clipboard code

    <!DOCTYPE html> <html> <head> <title> Copy Mo Mukha Mo </title> </head> <body> <div> <label for="text_1"> Label 1 </label> <input type="text" name="text_1" id="text_1"> <button onclick="copyMoTo(1)"> Copy to clipboard </button> </div> <div>...
  9. M

    Closed Update field using html form input and php

    Gawin mo nalang button yan, tapos lagay mo din sa form tag, same process ng ginawa mo sa sales invoice then gawin mong ganito: Kung yung value ng sales_invoice_number sa ay null kapag di pa nappindot confirm sa sales invoice: <td width="140"> <form action="update_status.php" method="post">...
  10. M

    Closed Update field using html form input and php

    Add ka ng <input type="hidden" name="id" value="<?php echo $order_id; ?>" /> before <input type="text" ... or basta nasa loob ng form tag. Then use method="post" instead of method="get" pero pwede din naman yung get but not that secured. Tapos sa update_sir.php change $_GET to $_POST. Remove mo...
  11. M

    Closed Update field using html form input and php

    Pwede patingin ng whole codes? Pati database structure? Sama mo na din yung mismong page. Screenshots will do.
  12. M

    Closed Update field using html form input and php

    Wala bang error na lumalabas? San galing yung $get_id, wala akong nakitang nakadeclare. Tsaka use POST instead of GET, atleast additional security. I think yung kulang lang dyan ay yung $get_id, walang mauupdate kasi di naman nakadeclare yung $get_id.
  13. M

    Closed Sublime text or notepad++?

    Sublime, pero kung nag vversion control ka, or need mo ng CLI sa development, recommended ko yung Visual Studio Code
  14. M

    Closed Pa help sa webpage

    Mapupunta sa content ng isang page? or magppopup? Kung mapupunta sa specific content ng isang page: Lagyan mo lang ng id yung wrapper ng content mo, ex: <div id="myContent"> qwe lqkjlw ejlkqjw elkqje lkqje lqkjwe lkqje lkjalk jqwlke jqlke jalsk jqlkwe jqlkjsldk jqlkwej lkajsdlk jqlkwej...
  15. M

    Closed I need help please error po sa php

    Di ko pa nattry tong sql server sa php, pero pag may error na "boolean given" means, may mali sa sql query mo. Try changing header('location:home1.php?emid=$id'); into header('location:home1.php?emid=' . $id);
Back
Top