| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/store.tiacyrusxxx.com/public_html/dev/xfcadmin/ |
Upload File : |
<?php
include("adm.config.php");
include("adm.header.php");
$msgSystem = "";
//$userinfo->model_id = $_SESSION['model_id'];
$sth = $dbh->prepare("SELECT * FROM `cms_models` WHERE `model_id` =?");
$sth->execute(array($userDetails->model_id));
$model_info = $sth->fetch(PDO::FETCH_OBJ);
$submitButton = 'Update Profile';
$profileList = array(
"about",
"beanywhere",
"bestreason",
"birthday",
"birthmonth",
"bodytype",
"bust",
"craziestthing",
"cup",
"ethnicity",
"eyes",
"favoritefood",
"favoritemovies",
"favoritesongs",
"fivethings",
"hair",
"height",
"hip",
"hobbies",
"hometown",
"kinyattributes",
"link_amazon",
"link_facebook",
"link_instagram",
"link_official",
"link_snapchat",
"link_twitter",
"location",
"myexpertise",
"name",
"perfectdate",
"perfectmate",
"sexualpreference",
"talents",
"threewords",
"todoforfun",
"turnsmeon",
"waist",
"weight"
);
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$allowUpdate = TRUE;
if (isset($_POST['name'])) {
if ($_POST['name'] != "") {
if (isset($model_info->name) && $model_info->name == $_POST['name']) {
// Ignore Post Model Name
} else {
$model_name_check_sql = $dbh->prepare("SELECT * FROM `cms_models` WHERE `name` LIKE ?");
$model_name_check_sql->execute(array($_POST['name']));
if ($model_name_check_sql->rowCount() > 0) {
$msgSystem .= msgSystem("That Model Name has already been taken.", "error");
$allowUpdate = FALSE;
}
}
} else {
$msgSystem .= msgSystem("Model Name is required.", "error");
$allowUpdate = FALSE;
}
}
if (isset($_POST['birthday']) && $_POST['birthday'] != "" && isset($_POST['birthmonth']) && $_POST['birthmonth'] != "") {
$profileList['birthdayFormatted'] = "0000-" . $_POST['birthmonth'] . "-" . $_POST['birthday'];
$birthdayHold = $_POST['birthday'];
}
if (isset($_POST['link_amazon'])) {
$_POST['link_amazon'] = str_replace("http://", "", $_POST['link_amazon']);
}
if (isset($_POST['link_facebook']) && $_POST['link_facebook'] != "" && !preg_match('/(?:(?:http|https):\/\/)?(?:www.)?facebook.com\/(?:(?:\w)*#!\/)?(?:pages\/)?(?:[?\w\-]*\/)?(?:profile.php\?id=(?=\d.*))?([\w\-]*)?/', $_POST['link_facebook'])) {
$msgSystem .= msgSystem("That doesn't seem to be a valid Facebook URL.", "error");
$allowUpdate = FALSE;
}
if (isset($_POST['link_instagram'])) {
$_POST['link_instagram'] = str_replace("http://", "", $_POST['link_instagram']);
$_POST['link_instagram'] = str_replace("instagram.com/", "", $_POST['link_instagram']);
}
if (isset($_POST['link_official'])) {
$_POST['link_official'] = str_replace("http://", "", $_POST['link_official']);
}
if (isset($_POST['link_twitter'])) {
$_POST['link_twitter'] = str_replace("http://", "", $_POST['link_twitter']);
$_POST['link_twitter'] = str_replace("twitter.com/", "", $_POST['link_twitter']);
}
foreach ($profileList as $profileOption) {
if ($profileOption == "birthmonth") {
// We skip this since we've created the birthdayFormatted variable
// But I still like having them in the array for the profile completion percentage
$model_info->$profileOption = $_POST[$profileOption];
continue;
}
if ($profileOption == "birthday" && isset($profileList['birthdayFormatted'])) {
$_POST['birthday'] = $profileList['birthdayFormatted'];
}
if (isset($_POST[$profileOption]) && isset($model_info->$profileOption) && $_POST[$profileOption] != $model_info->$profileOption) {
if ($allowUpdate) {
$update_sql = "UPDATE cms_models SET " . $profileOption . " = ? WHERE model_id = " . $model_info->model_id;
$q = $dbh->prepare($update_sql);
$q->execute(array($_POST[$profileOption]));
$msgSystem = msgSystem("Your Profile has been updated.", "success");
}
if ($profileOption == "birthday" && isset($_POST['birthday']) && isset($birthdayHold)) {
$_POST[$profileOption] = $birthdayHold;
}
$model_info->$profileOption = $_POST[$profileOption];
}
}
if (isset($_FILES) && isset($model_info->model_id) && is_numeric($model_info->model_id) && $allowUpdate) {
if (isset($_FILES['avatar']) && $_FILES['avatar']['tmp_name'] != "") {
$msgSystem .= uploadProfileImage('avatar', $model_info->model_id, '110', '110');
}
if (isset($_FILES['coverphoto']) && $_FILES['coverphoto']['tmp_name'] != "") {
$msgSystem .= uploadProfileImage('coverphoto', $model_info->model_id, '610', '300');
}
if (isset($_FILES['portrait']) && $_FILES['portrait']['tmp_name'] != "") {
$msgSystem .= uploadProfileImage('portrait', $model_info->model_id, '193', '275');
}
}
}
// calculate the % of profile completion by adding up the completed fields
// we drop the address_2 field since its not required
$profileCounter = 0;
foreach ($profileList as $profileOption) {
if (isset($model_info->$profileOption) && $model_info->$profileOption != "") {
$profileCounter++;
}
}
$percentage = round(($profileCounter / count($profileList)) * 100);
?>
<form action="" method="POST" enctype="multipart/form-data">
<div class="row">
<div class="large-12 columns">
<?php
if (isset($msgSystem) && $msgSystem != "") {
echo $msgSystem;
}
?>
<div class="progress large-12 success radius"><span class="meter" style="width: <?php echo $percentage; ?>%; white-space: nowrap; color: black;">Public Profile completion: <?php echo $percentage; ?>%</span></div>
<div class="panel">
<h4>Public Profile</h4>
<div class="row">
<div class="large-6 columns">
<div class="row">
<div class="large-12 columns">
<label>About
<textarea name="about" rows="15"><?php echo (isset($model_info->about) ? $model_info->about : ""); ?></textarea>
</label>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>Twitter Name
<input type="text" name="link_twitter" value="<?php echo (isset($model_info->link_twitter) ? $model_info->link_twitter : ""); ?>" />
</label>
</div>
<div class="large-6 columns">
<label>Instagram Name
<input type="text" name="link_instagram" value="<?php echo (isset($model_info->link_instagram) ? $model_info->link_instagram : ""); ?>" />
</label>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>Facebook URL
<input type="text" name="link_facebook" value="<?php echo (isset($model_info->link_facebook) ? $model_info->link_facebook : ""); ?>" />
</label>
</div>
<div class="large-6 columns">
<label>Amazon Wishlist URL
<input type="text" name="link_amazon" value="<?php echo (isset($model_info->link_amazon) ? $model_info->link_amazon : ""); ?>" />
</label>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>Snapchat
<input type="text" name="link_snapchat" value="<?php echo (isset($model_info->link_snapchat) ? $model_info->link_snapchat : ""); ?>" />
</label>
</div>
<div class="large-6 columns">
<label>Official Website
<input type="text" name="link_official" value="<?php echo (isset($model_info->link_official) ? $model_info->link_official : ""); ?>" />
</label>
</div>
</div>
</div>
<div class="large-6 columns">
<div class="row">
<div class="large-12 columns">
<label>Model Name
<input type="text" name="name" readonly="readonly" value="<?php echo (isset($model_info->name) ? $model_info->name : ""); ?>" />
</label>
</div>
</div>
<div class="row">
<div class="large-4 columns">
<label>Body Type
<select name="bodytype">
<option></option>
<option value="Athletic" <?php echo (isset($model_info->bodytype) && $model_info->bodytype == "Athletic" ? "selected" : ""); ?>>Athletic</option>
<option value="Long & Lean" <?php echo (isset($model_info->bodytype) && $model_info->bodytype == "Long & Lean" ? "selected" : ""); ?>>Long & Lean</option>
<option value="Petite" <?php echo (isset($model_info->bodytype) && $model_info->bodytype == "Petite" ? "selected" : ""); ?>>Petite</option>
<option value="Voluptuous" <?php echo (isset($model_info->bodytype) && $model_info->bodytype == "Voluptuous" ? "selected" : ""); ?>>Voluptuous</option>
</select>
</label>
</div>
<div class="large-4 columns">
<label>Eyes
<select name="eyes">
<option></option>
<option value="Blue" <?php echo (isset($model_info->eyes) && $model_info->eyes == "Blue" ? "selected" : ""); ?>>Blue</option>
<option value="Green" <?php echo (isset($model_info->eyes) && $model_info->eyes == "Green" ? "selected" : ""); ?>>Green</option>
<option value="Brown" <?php echo (isset($model_info->eyes) && $model_info->eyes == "Brown" ? "selected" : ""); ?>>Brown</option>
<option value="Hazel" <?php echo (isset($model_info->eyes) && $model_info->eyes == "Hazel" ? "selected" : ""); ?>>Hazel</option>
</select>
</label>
</div>
<div class="large-4 columns">
<label>Hair
<select name="hair">
<option></option>
<option value="Blonde" <?php echo (isset($model_info->hair) && $model_info->hair == "Blonde" ? "selected" : ""); ?>>Blonde</option>
<option value="Red" <?php echo (isset($model_info->hair) && $model_info->hair == "Red" ? "selected" : ""); ?>>Red</option>
<option value="Brunette" <?php echo (isset($model_info->hair) && $model_info->hair == "Brunette" ? "selected" : ""); ?>>Brunette</option>
<option value="Black" <?php echo (isset($model_info->hair) && $model_info->hair == "Black" ? "selected" : ""); ?>>Black</option>
<option value="Auburn" <?php echo (isset($model_info->hair) && $model_info->hair == "Auburn" ? "selected" : ""); ?>>Auburn</option>
</select>
</label>
</div>
</div>
<div class="row">
<div class="large-3 columns">
<label>Bust
<select name="bust">
<option></option>
<option value="32" <?php echo (isset($model_info->bust) && $model_info->bust == 32 ? "selected" : ""); ?>>32</option>
<option value="33" <?php echo (isset($model_info->bust) && $model_info->bust == 33 ? "selected" : ""); ?>>33</option>
<option value="34" <?php echo (isset($model_info->bust) && $model_info->bust == 34 ? "selected" : ""); ?>>34</option>
<option value="35" <?php echo (isset($model_info->bust) && $model_info->bust == 35 ? "selected" : ""); ?>>35</option>
<option value="36" <?php echo (isset($model_info->bust) && $model_info->bust == 36 ? "selected" : ""); ?>>36</option>
<option value="37" <?php echo (isset($model_info->bust) && $model_info->bust == 37 ? "selected" : ""); ?>>37</option>
<option value="38" <?php echo (isset($model_info->bust) && $model_info->bust == 38 ? "selected" : ""); ?>>38</option>
</select>
</label>
</div>
<div class="large-3 columns">
<label>Cup
<select name="cup">
<option></option>
<option value="A" <?php echo (isset($model_info->cup) && $model_info->cup == "A" ? "selected" : ""); ?>>A</option>
<option value="B" <?php echo (isset($model_info->cup) && $model_info->cup == "B" ? "selected" : ""); ?>>B</option>
<option value="C" <?php echo (isset($model_info->cup) && $model_info->cup == "C" ? "selected" : ""); ?>>C</option>
<option value="D" <?php echo (isset($model_info->cup) && $model_info->cup == "D" ? "selected" : ""); ?>>D</option>
<option value="DD" <?php echo (isset($model_info->cup) && $model_info->cup == "DD" ? "selected" : ""); ?>>DD</option>
<option value="DDD" <?php echo (isset($model_info->cup) && $model_info->cup == "DDD" ? "selected" : ""); ?>>DDD</option>
<option value="E" <?php echo (isset($model_info->cup) && $model_info->cup == "E" ? "selected" : ""); ?>>E</option>
<option value="F" <?php echo (isset($model_info->cup) && $model_info->cup == "F" ? "selected" : ""); ?>>F</option>
</select>
</label>
</div>
<div class="large-3 columns">
<label>Waist
<input type="number" name="waist" value="<?php echo (isset($model_info->waist) ? $model_info->waist : ""); ?>" />
</label>
</div>
<div class="large-3 columns">
<label>Hip
<input type="number" name="hip" value="<?php echo (isset($model_info->hip) ? $model_info->hip : ""); ?>" />
</label>
</div>
</div>
<div class="row">
<div class="large-4 columns">
<label>Weight
<input type="number" name="weight" value="<?php echo (isset($model_info->weight) ? $model_info->weight : ""); ?>" />
</label>
</div>
<div class="large-4 columns">
<label>Height
<select name="height">
<option></option>
<option value="59" <?php echo (isset($model_info->height) && $model_info->height == 59 ? "selected" : ""); ?>>4'11"</option>
<option value="60" <?php echo (isset($model_info->height) && $model_info->height == 60 ? "selected" : ""); ?>>5'0"</option>
<option value="61" <?php echo (isset($model_info->height) && $model_info->height == 61 ? "selected" : ""); ?>>5'1"</option>
<option value="62" <?php echo (isset($model_info->height) && $model_info->height == 62 ? "selected" : ""); ?>>5'2"</option>
<option value="63" <?php echo (isset($model_info->height) && $model_info->height == 63 ? "selected" : ""); ?>>5'3"</option>
<option value="64" <?php echo (isset($model_info->height) && $model_info->height == 64 ? "selected" : ""); ?>>5'4"</option>
<option value="65" <?php echo (isset($model_info->height) && $model_info->height == 65 ? "selected" : ""); ?>>5'5"</option>
<option value="66" <?php echo (isset($model_info->height) && $model_info->height == 66 ? "selected" : ""); ?>>5'6"</option>
<option value="67" <?php echo (isset($model_info->height) && $model_info->height == 67 ? "selected" : ""); ?>>5'7"</option>
<option value="68" <?php echo (isset($model_info->height) && $model_info->height == 68 ? "selected" : ""); ?>>5'8"</option>
<option value="69" <?php echo (isset($model_info->height) && $model_info->height == 69 ? "selected" : ""); ?>>5'9"</option>
<option value="70" <?php echo (isset($model_info->height) && $model_info->height == 70 ? "selected" : ""); ?>>5'10"</option>
<option value="71" <?php echo (isset($model_info->height) && $model_info->height == 71 ? "selected" : ""); ?>>5'11"</option>
<option value="72" <?php echo (isset($model_info->height) && $model_info->height == 72 ? "selected" : ""); ?>>6'0"</option>
<option value="73" <?php echo (isset($model_info->height) && $model_info->height == 73 ? "selected" : ""); ?>>6'1"</option>
</select>
</label>
</div>
<div class="large-4 columns">
<label>Ethnicity
<select name="ethnicity">
<option></option>
<option value="Black" <?php echo (isset($model_info->ethnicity) && $model_info->ethnicity == "Black" ? "selected" : ""); ?>>Black</option>
<option value="Caucasian" <?php echo (isset($model_info->ethnicity) && $model_info->ethnicity == "Caucasian" ? "selected" : ""); ?>>Caucasian</option>
<option value="Asian" <?php echo (isset($model_info->ethnicity) && $model_info->ethnicity == "Asian" ? "selected" : ""); ?>>Asian</option>
<option value="Indian" <?php echo (isset($model_info->ethnicity) && $model_info->ethnicity == "Indian" ? "selected" : ""); ?>>Indian</option>
<option value="Latin" <?php echo (isset($model_info->ethnicity) && $model_info->ethnicity == "Latin" ? "selected" : ""); ?>>Latin</option>
</select>
</label>
</div>
</div>
<div class="row">
<div class="large-4 columns">
<label>Hometown
<input type="text" name="hometown" value="<?php echo (isset($model_info->hometown) ? $model_info->hometown : ""); ?>" />
</label>
</div>
<div class="large-4 columns">
<label>Location
<input type="text" name="location" value="<?php echo (isset($model_info->location) ? $model_info->location : ""); ?>" />
</label>
</div>
<div class="large-4 columns">
<label>Sexual Preference
<select name="sexualpreference">
<option></option>
<option value="Straight" <?php echo (isset($model_info->sexualpreference) && $model_info->sexualpreference == "Straight" ? "selected" : ""); ?>>Straight</option>
<option value="Lesbian" <?php echo (isset($model_info->sexualpreference) && $model_info->sexualpreference == "Lesbian" ? "selected" : ""); ?>>Lesbian</option>
<option value="Bisexual" <?php echo (isset($model_info->sexualpreference) && $model_info->sexualpreference == "Bisexual" ? "selected" : ""); ?>>Bisexual</option>
</select>
</label>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Birthday (Public)</label>
</div>
<div class="large-4 columns">
<label>Month</label>
<select name="birthmonth">
<option></option>
<option value="01" <?php echo (isset($model_info->birthmonth) && $model_info->birthmonth == "01" ? "selected" : ""); ?>>January</option>
<option value="02" <?php echo (isset($model_info->birthmonth) && $model_info->birthmonth == "02" ? "selected" : ""); ?>>February</option>
<option value="03" <?php echo (isset($model_info->birthmonth) && $model_info->birthmonth == "03" ? "selected" : ""); ?>>March</option>
<option value="04" <?php echo (isset($model_info->birthmonth) && $model_info->birthmonth == "04" ? "selected" : ""); ?>>April</option>
<option value="05" <?php echo (isset($model_info->birthmonth) && $model_info->birthmonth == "05" ? "selected" : ""); ?>>May</option>
<option value="06" <?php echo (isset($model_info->birthmonth) && $model_info->birthmonth == "06" ? "selected" : ""); ?>>June</option>
<option value="07" <?php echo (isset($model_info->birthmonth) && $model_info->birthmonth == "07" ? "selected" : ""); ?>>July</option>
<option value="08" <?php echo (isset($model_info->birthmonth) && $model_info->birthmonth == "08" ? "selected" : ""); ?>>August</option>
<option value="09" <?php echo (isset($model_info->birthmonth) && $model_info->birthmonth == "09" ? "selected" : ""); ?>>September</option>
<option value="10" <?php echo (isset($model_info->birthmonth) && $model_info->birthmonth == "10" ? "selected" : ""); ?>>October</option>
<option value="11" <?php echo (isset($model_info->birthmonth) && $model_info->birthmonth == "11" ? "selected" : ""); ?>>November</option>
<option value="12" <?php echo (isset($model_info->birthmonth) && $model_info->birthmonth == "12" ? "selected" : ""); ?>>December</option>
</select>
</div>
<div class="large-4 columns">
<label>Day</label>
<select name="birthday">
<option></option>
<?php
$dayCounter = 1;
while ($dayCounter < 32) {
if ($dayCounter < 10) {
$formattedDay = "0" . $dayCounter;
} else {
$formattedDay = $dayCounter;
}
echo '<option value="' . $formattedDay . '"' . (isset($model_info->birthday) && $model_info->birthday == $formattedDay ? " selected" : "") . '>' . $dayCounter . '</option>';
$dayCounter++;
}
?>
</select>
</div>
<div class="large-3 columns">
</div>
<div class="large-3 columns">
</div>
</div>
</div>
</div>
</div>
<div class="panel">
<h4>Publicly Viewable Files</h4>
<p>These 3 images are your Avatar on your profile page, Your Cover Photo on your Profile page, and a Portrait Photo used in the model listings.</p>
<div class="row">
<div class="large-12 columns">
<input type="hidden" name="step" value="1">
<div class="row">
<div class="large-4 columns">
<label>Avatar<br />
<div style="margin-top: 10px; margin-bottom: 10px;"><img src="../content/models/<?php echo $model_info->model_id; ?>_avatar.jpg<?php echo '?v=' . uniqid(); ?>"></div><br />
<input type="file" name="avatar" />
</label>
</div>
<div class="large-4 columns">
<label>Profile Cover Photo<br />
<div style="margin-top: 10px; margin-bottom: 10px;"><img src="../content/models/<?php echo $model_info->model_id; ?>_coverphoto.jpg<?php echo '?v=' . uniqid(); ?>"></div><br />
<input type="file" name="coverphoto" />
</label>
</div>
<div class="large-4 columns">
<label>Portrait<br />
<div style="margin-top: 10px; margin-bottom: 10px;"><img src="../content/models/<?php echo $model_info->model_id; ?>_portrait.jpg<?php echo '?v=' . uniqid(); ?>"></div><br />
<input type="file" name="portrait" />
</label>
</div>
</div>
</div>
</div>
</div>
<div class="panel">
<h4>Interests & Hobbies</h4>
<div class="row">
<div class="large-6 columns">
<label>Five things I can't live without:
<textarea name="fivethings" rows="4"><?php echo (isset($model_info->fivethings) ? $model_info->fivethings : ""); ?></textarea>
</label>
</div>
<div class="large-6 columns">
<label>Three words that describe me:
<textarea name="threewords" rows="4"><?php echo (isset($model_info->threewords) ? $model_info->threewords : ""); ?></textarea>
</label>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>Favorite Movies:
<textarea name="favoritemovies" rows="4"><?php echo (isset($model_info->favoritemovies) ? $model_info->favoritemovies : ""); ?></textarea>
</label>
</div>
<div class="large-6 columns">
<label>What I like to do for fun:
<textarea name="todoforfun" rows="4"><?php echo (isset($model_info->todoforfun) ? $model_info->todoforfun : ""); ?></textarea>
</label>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>Favorite Songs:
<textarea name="favoritesongs" rows="4"><?php echo (isset($model_info->favoritesongs) ? $model_info->favoritesongs : ""); ?></textarea>
</label>
</div>
<div class="large-6 columns">
<label>Craziest thing I've ever done:
<textarea name="craziestthing" rows="4"><?php echo (isset($model_info->craziestthing) ? $model_info->craziestthing : ""); ?></textarea>
</label>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>If I could be anywhere right now:
<textarea name="beanywhere" rows="4"><?php echo (isset($model_info->beanywhere) ? $model_info->beanywhere : ""); ?></textarea>
</label>
</div>
<div class="large-6 columns">
<label>Hobbies:
<textarea name="hobbies" rows="4"><?php echo (isset($model_info->hobbies) ? $model_info->hobbies : ""); ?></textarea>
</label>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>Talents:
<textarea name="talents" rows="4"><?php echo (isset($model_info->talents) ? $model_info->talents : ""); ?></textarea>
</label>
</div>
<div class="large-6 columns">
<label>Perfect Mate:
<textarea name="perfectmate" rows="4"><?php echo (isset($model_info->perfectmate) ? $model_info->perfectmate : ""); ?></textarea>
</label>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>Perfect Date:
<textarea name="perfectdate" rows="4"><?php echo (isset($model_info->perfectdate) ? $model_info->perfectdate : ""); ?></textarea>
</label>
</div>
<div class="large-6 columns">
<label>Favorite Food:
<textarea name="favoritefood" rows="4"><?php echo (isset($model_info->favoritefood) ? $model_info->favoritefood : ""); ?></textarea>
</label>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>What turns me on:
<textarea name="turnsmeon" rows="4"><?php echo (isset($model_info->turnsmeon) ? $model_info->turnsmeon : ""); ?></textarea>
</label>
</div>
<div class="large-6 columns">
<label>Kinky attributes:
<textarea name="kinyattributes" rows="4"><?php echo (isset($model_info->kinyattributes) ? $model_info->kinyattributes : ""); ?></textarea>
</label>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>My Expertise:
<textarea name="myexpertise" rows="4"><?php echo (isset($model_info->myexpertise) ? $model_info->myexpertise : ""); ?></textarea>
</label>
</div>
<div class="large-6 columns">
<label>Best reason to get to know me:
<textarea name="bestreason" rows="4"><?php echo (isset($model_info->bestreason) ? $model_info->bestreason : ""); ?></textarea>
</label>
</div>
</div>
<div class="row">
<div class="large-12 columns" style="text-align: right">
<input type="submit" value="<?php echo $submitButton; ?>" class="button" />
</div>
</div>
</div>
</div>
</div>
<?php
include("adm.footer.php");
?>