Jump to content

newe

Newbie
  • Posts

    4
  • Joined

  • Last visited

Everything posted by newe

  1. body { background: url(C:/Users/Desktop/33.jpg) repeat-x 0 100% fixed,linear-gradient(to top, #5080b1, #004e8c) fixed; } картинка не появляется на заднем плане.правилен ли код?
  2. пользователь вводит информацию и отправляет,но после отправки все что было записано пропадает.Что сделать чтобы введенная информация оставалась ? <form action='skob.cgi' method='get'> <input type='text' input name='fn' class="pod" "<?=$fn ?>" ><br>// вводит <input type='submit' value='OK'>//отправляет </form>
  3. что нужно сделать ,чтобы после ввода данных в форму и отправления их пользователю,введенная информация в поисковике оставалась?
  4. 1 код с++ #include<iostream> #include<fstream> #include<string> using namespace std; int main() { cout << "content-type:text/html;charset=windows1251\n\n"; ifstream f("C:/Users/артур/source/repos/saitforskobki/HTMLPage.htm"); if (f.is_open()) { char* ln = new char[1024]; while (!f.eof()) { f.getline(ln, 1024); if (strcmp(ln, "<!--content-->") == 0) { cout << 4; } else { cout << ln; } } } return 0; } 2 html код <HTML> <HEAD> <META NAME="GENERATOR" Content="Microsoft Visual Studio"> <TITLE></TITLE> </HEAD> <form action='skob.cgi' method='get'> <input type='text' name='fn'><br> <input type='submit' value='OK'> </form> <BODY> <!--content--> </BODY> </HTML>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy