taquitosensei
-
Posts
676 -
Joined
-
Last visited
-
Days Won
2
Community Answers
-
taquitosensei's post in How to include files in other folders? was marked as the answer
You could set the include path.
$path = '/path/to/MyFolder'; set_include_path(get_include_path().PATH_SEPARATOR.$path); include("phpseclib/Crypt/RSA.php"); -
taquitosensei's post in One instance of a value in a while loop was marked as the answer
You've got a counter
if($counter==0) { echo "<div class='email-header'>"; echo "<P>".$subject['subject']."</P>"; echo "</div>"; }