Zająłem się projektem strony mobilnej, wszystko pięknie działa tylko chcę dodać do niej oprócz widoku treści, dodawanie własnej treści(np. komentarzy)
Jak na złość wszystko pięknie, formularz jest, ale gdy klikam na wyślij nic się nie dzieje na tablecie/telefonie/komputerze.
Miałby ktoś pomysł jak to naprawić?
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//PL" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"> <html> <head> <meta content="text/html; charset=ISO-8859-2" http-equiv="content-type"> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" /> </head> <body> <? $db_host = 'localhost'; $db_user = 'root'; $db_pass = ''; $db_name = 'uu'; if( !@mysql_connect($db_host, $db_user, $db_pass) ) displayError( 'błąd połączenia z MySQL', mysql_errno(), mysql_error() ); if( !@mysql_select_db($db_name) ) displayError( 'błąd wybierania bazy danych', mysql_errno(), mysql_error() ); include('testing.js'); $stopka = "Kopalnia Modów 2013"; $powrot= "testing.php"; ?> <div data-role="page" id="strona1"> <header data-role="header" class="ui-bar-a ui-header"> </header> <a class="ui-btn-left ui-btn ui-btn-icon-left ui-btn-corner-all ui-shadow ui-btn-up-a" data-icon="back" data-rel="back" href="#" data-theme="a"> <span class="ui-btn-inner ui-btn-corner-all"> <span class="ui-btn-text"> Powrót </span> <div data-role="content"> <ul class="ui-listview" data-role="listview" role="listbox"> <li class="ui-li-has-thumb ui-btn ui-btn-icon-right ui-li ui-btn-up-c" role="option" data-theme="a"> <form action="wyslij.php" method="get"> <input type="submit" value="Wyślij" /> </form> </div> <footer data-role="footer"> </footer> </div> </body> </html>