-2
Good afternoon! I am developing a website to register a site in PHP, and when I click to register, I get this error:
Warning: Unknown: failed to open stream: No such file or directory in Unknown on line 0
Fatal error: Unknown: Failed Opening required 'C:/Program Files (x86) /Easyphp-Devserver-17/eds-www/Feira_de_sciences/php/inserir.php' (include_path='.;C: php Pear') in Unknown on line 0"
What can I do?
My PHP is very simple
HTML
Welcome https://fonts.googleapis.com/css?family=Titillium+Web:400,300,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
<ul class="tab-group">
<li class="tab active"><a href="#signup">Registro</a></li>
<li class="tab"><a href="#login">Login</a></li>
</ul>
<div class="tab-content">
<div id="signup">
<h1>Registre-se</h1>
<form action="inserir.php" method="post">
<div class="top-row">
<div class="field-wrap">
<label>
Nome<span class="req">*</span>
</label>
<input type="text" name="rnome" required autocomplete="off" />
</div>
<div class="field-wrap">
</div>
</div>
<div class="field-wrap">
<label>
Email<span class="req">*</span>
</label>
<input type="email" name="remail" required autocomplete="off"/>
</div>
<div class="field-wrap">
<label>
Senha<span class="req">*</span>
</label>
<input type="password"required name ="rsenha" autocomplete="off"/>
</div>
<button type="submit" class="button button-block"/>Registrar</button>
</form>
</div>
<div id="login">
<h1>Bem vindo de volta!</h1>
<form action="/" method="post">
<div class="field-wrap">
<label>
Email<span class="req">*</span>
</label>
<input type="email"required name="lemail" autocomplete="off"/>
</div>
<div class="field-wrap">
<label>
Senha<span class="req" >*</span>
</label>
<input type="password"required name="lsenha" autocomplete="off"/>
</div>
<button class="button button-block"/>Logar</button>
</form>
</div>
</div><!-- tab-content -->
http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'>
<script src="js/index.js"></script>
PHP
echo "test";
In the Pastebin
PHP: https://pastebin.com/z8TqTX1k
Index: https://pastebin.com/1PHTJuTa
hello, include the page code in the question for easy reading. Some people may also not have access to other places outside of Sopt
– Ricardo Pontual
Related or duplicated: https://answall.com/questions/128124/erro-na-linha-0-zero-like-pode-isso
– Wallace Maxters
Okay, just a moment
– DetetiveVirtual