Results 1 to 18 of 18

Thread: Get Post PHP

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User
    Join Date: May:2005
    Location: Varna
    Posts: 57

    Get Post PHP

    ,
    . PHP . POST, GET.

    !

  2. #2
    White awesomeness z0ne's Avatar
    Join Date: Feb:2002
    Location: o
    Posts: 13,331
    - POST . .

  3. #3
    Registered User
    Join Date: May:2005
    Location: Varna
    Posts: 57
    .
    a.html , b.php .
    , : a.php , , ? , a.html b.php. a.php->a.php .
    (Get ,Post) ?

  4. #4
    White awesomeness z0ne's Avatar
    Join Date: Feb:2002
    Location: o
    Posts: 13,331
    POST :

    <form name="feedback" action="b.php" method="post">
    ...
    </form>

    - GET . : a.html PHP . b.php :

    PHP Code:
    <?php
    $name 
    $_POST['name'];
    ...
    $name E-Mail - . . , , - .

    www.plamea.bg

  5. #5
    Registered User tedych's Avatar
    Join Date: Nov:2003
    Location:
    Posts: 17,654
    GET POST . '-' , RFC-, .
    , GET -, URL- . login ( plain ), .
    URL , POST, - ( 8MB, ).
    (a.php) , , ..
    , - , submit , .
    - , , , '' ..
    , html . ( - : if (isset($_POST['btnSubmit'])) { ; }). - <input type="hidden" name="action" value="submit" /> ,
    $action = "";
    if (isset($_POST['action'])) $action = $_POST['action'];
    $action, "submit", .
    - getParameterDefault("action", ""), , isset(), "" (.. ), , .
    - - .
    , , .. ..

    .

  6. #6
    Registered User
    Join Date: May:2005
    Location: Varna
    Posts: 57
    !!!


  7. #7
    philosophus duratea icaci's Avatar
    Join Date: Oct:2006
    Location: Aachen
    Posts: 2,698
    " " , GET , ( ), POST - , , .

    GET, . , , . Google GET , ( , URL- HTTP Referrer ).

    , . , POST , .

    POST .
    Internet - it doesn't make you stupid, it just makes your stupidity more accessible to others

  8. #8
    Registered User
    Join Date: May:2005
    Location: Varna
    Posts: 57
    , GET. !

    Google-, .
    include(xxxx.inc); , . xxxx.inc , MySQL. . include() inc , . inc
    echo 'aaa'; , . include() - inc ?
    include() ?
    !
    Last edited by siv_82; 12th May 2007 at 14:20.

  9. #9
    Registered User tedych's Avatar
    Join Date: Nov:2003
    Location:
    Posts: 17,654
    Quote Originally Posted by siv_82 View Post
    , GET. !

    Google-, .
    include(xxxx.inc); , . xxxx.inc , MySQL. . include() inc , . inc
    echo 'aaa'; , . include() - inc ?
    include() ?
    !
    , . , , . include('f1.php');
    f1.php include('f2.php');, - f1 i f2.php.
    , include() , require - require , .
    .inc <?php ?> , php .
    GET POST. , icaci . , / . , referrer , POST - , Dreamweaver Insert , '' method=post.
    , , <form enctype="multipart/form-data", .
    Last edited by tedych; 12th May 2007 at 15:02.

  10. #10
    Registered User
    Join Date: May:2005
    Location: Varna
    Posts: 57
    'tedych'!
    , , , include(); *.inc.
    - , .

  11. #11
    White awesomeness z0ne's Avatar
    Join Date: Feb:2002
    Location: o
    Posts: 13,331
    .inc, - txt , php "server side" - :

    - include
    *.inc.php
    - class
    *.class.php

    ..

  12. #12
    Registered User
    Join Date: May:2005
    Location: Varna
    Posts: 57
    . *.inc, , . !

    . <select>- , , ... HTML, PHP. Java . <select> .

    !

  13. #13
    Registered User tedych's Avatar
    Join Date: Nov:2003
    Location:
    Posts: 17,654
    Quote Originally Posted by siv_82 View Post
    . *.inc, , . !

    . <select>- , , ... HTML, PHP. Java . <select> .

    !
    .inc - , , .php (. ). , ( IIS ), ISAPI/CGI , PHP ( , .inc).

    <select> - , .

    :
    <form name=.... method="post">
    <select name="myselect">
    <option value="1">One</option>
    <option value="2">Two</option>
    </select>

    :
    $selected = $_POST['myselect'];

    name=value , name = <select>-a, a value- value <option> , .
    (Two),
    $selected 2.

    name , value - value , <input type="checkbox" name="mybox" value="1">
    , name=value, $_POST['mybox'] 1. , (isset($_POST['mybox']) false), .. .
    radio button, , , , name . .. <input type="radio" name="myradio"...> "myradio", , "myradio" value- .
    $_POST['mybox'] 2, <radio name="myradio" value="2">.
    .. .

  14. #14
    Registered User
    Join Date: May:2005
    Location: Varna
    Posts: 57
    ,
    , , ...

    PHP, MySQL. ., OnMouseOver . , , , , . <a href..> , , "". , .

    Java, , Java . "Back" , .

    !

    P.S. 'tedych' . !

  15. #15
    White awesomeness z0ne's Avatar
    Join Date: Feb:2002
    Location: o
    Posts: 13,331
    rollOver:

    <td colspan="2" align="left" onMouseOver="this.style.backgroundColor= '#00000;" onMouseOut="this.style.backgroundColor=' ';">

    . Skype ICQ .

  16. #16
    Registered User
    Join Date: May:2005
    Location: Varna
    Posts: 57
    zOne! .

    GET. GET .
    : "", MySQL , GET, . 1000 . , " 1000" " 1000", , "page.php?name='$ime'". $ime ."Internal Server Error" . , browser-, "" , "%EA%E0".
    , Apache-?

    !

  17. #17
    White awesomeness z0ne's Avatar
    Join Date: Feb:2002
    Location: o
    Posts: 13,331
    PHP Code:
    urlencode($); 
    ->

    PHP Code:
    $ime urlencode($ime); 
    !

  18. #18
    Registered User
    Join Date: May:2005
    Location: Varna
    Posts: 57
    z0ne:

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Copyright © 1999-2011 . .
iskamPC.com | mobility.BG | Bloody's Techblog | | 3D Vision Blog |