This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# This command expects to be run within the Open Atrium profile directory. To | |
# generate a full distribution you it must be a CVS checkout. | |
# | |
# To use this command you must have `drush make`, `cvs` and `git` installed. | |
# | |
if [ -f openatrium.make ]; then | |
echo "\nThis command can be used to run openatrium.make in place, or to generate" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$raw_email = <<<TEST | |
Tizag.comi $100 | |
Webmaster Tutorials | |
Unlock your potential! | |
TEST; | |
echo $raw_email; | |
exec("EMAIL=" . escapeshellarg($raw_email) . "; echo \"\$EMAIL\";", $result); | |
print_r($result); |
NewerOlder