over a php-script how many changes must one do, in order to change it?
over a php-script how many changes must one do, in order to change it, to the extend it won’t be considered as "copy" or anothorised script usage?
How to change the theme of my wordpress with a layout i downloaded?
Do i need a paid acc or i can do it with the free one?
hope its only the free one >_>
Joomla! configuration.php unwriteable. What can I do to fix this?
I’m new to all of this and I don’t know how to change the permissions, file manager under cpanel under fantastico doesn’t appear to be it.. Any help is much appreciated!
How do we associate a php script with an HTML form?
<HTML>
<HEAD>
<TITLE>Generic Input Form</TITLE>
</HEAD>
<BODY>
<FORM METHOD="post" ACTION="display_input.php">
<P><strong>Text Field:</strong><br>
<TEXTAREA NAME="text1" COLS=45 ROWS=5 WRAP=virtual></TEXTAREA></P>
<P><strong>String Functions:</strong><br>
<INPUT TYPE="radio" NAME="func" VALUE="md5">get md5<br>
<INPUT TYPE="radio" NAME="func" VALUE="strlen">get length of string<br>
<INPUT TYPE="radio" NAME="func" VALUE="strrev"> reverse the string<br>
<INPUT TYPE="radio" NAME="func" VALUE="strtoupper"> make string uppercase<br>
<INPUT TYPE="radio" NAME="func" VALUE="strtolower"> make string lowercase<br>
<INPUT TYPE="radio" NAME="func" VALUE="ucwords"> make first letter of all words uppercase</P>
<P><INPUT TYPE="submit" NAME="submit" VALUE="Do Something With the String"></P>
</FORM>
</BODY>
</HTML>
I have this code which associates to the following php script
<?php
if(($_POST[text1]=="")||($_POST[func]=="")){
header("Location: remote.html");
exit;
}
$result = $_POST[func]($_POST[text1]);
?>
<HTML>
<HEAD>
<TITLE>Results</TITLE>
</HEAD>
<BODY>
<?php
echo "$result";
?>
</BODY>
</HTML>
But on pressing the submit button, i get to display_input.php but i get an error saying that the constants ‘text1′ and ‘func’ are unidentified. What should i do?
How do I have different fonts and colors appear for different authors on my wordpress blog?
Please help! I can tinker with the style sheet and php templates, but just can’t seem to get it to work using what I found in the forums. It doesn’t help that ‘m not super profficient in how the loop works. any advice is appreciated!