I have this simple form:
<form method="post" action".">
<input type="text" name="title">
<input type="submit" name"send">
</form>
I want that when a user click on submit, then will be open another window of browser with the results. Is it possible ?
I want to remove the first characters from a string.
Is there a function that work like this ?:
.
a = "BarackObama"
print myfunction(4,a)
"ckObama"
b = "The world is mine"
print myfunction(6,b)
"rld is mine"