Posts by Alvaro Louzada • 139 points
2 posts
-
0
votes1
answer298
viewsA: Contact form in php does not send
Try using if directly in the mail function to see if it returns an error. if (mail($email_to, $email, $corpo, $headers)){ echo "<script> alert('Mensagem enviada com sucesso!');…
-
3
votes4
answers7268
viewsA: Get a Youtube video ID from the URL
You can use as soon as any format of the url will work function YoutubeID($url) { if(strlen($url) > 11) { if…
phpanswered Alvaro Louzada 139