Guest User

Untitled

a guest
Mar 30th, 2014
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 22.47 KB | None | 0 0
  1. <?php
  2.  
  3. include 'sessions.php';
  4.  
  5. /*
  6.  
  7.  > START phpThumb
  8.  
  9. */
  10.  
  11. //////////////////////////////////////////////////////////////
  12.  
  13. ///  phpThumb() by James Heinrich <[email protected]>   //
  14.  
  15. //        available at http://phpthumb.sourceforge.net     ///
  16.  
  17. //////////////////////////////////////////////////////////////
  18.  
  19. //                                                          //
  20.  
  21. //////////////////////////////////////////////////////////////
  22.  
  23.  
  24.  
  25. $GDversion['string']  = 'unknown';
  26.  
  27. $GDversion['numeric'] = 0;
  28.  
  29. ob_start();
  30.  
  31. if (!@include_once('freemedia/phpthumb.functions.php')) {
  32.  
  33.     ob_end_flush();
  34.  
  35.     die('failed to include_once("freemedia/phpthumb.functions.php")');
  36.  
  37. }
  38.  
  39. if (!@include_once('freemedia/phpthumb.class.php')) {
  40.  
  41.     die('failed to include_once("freemedia/phpthumb.class.php")');
  42.  
  43.     ob_end_flush();
  44.  
  45. }
  46.  
  47. ob_end_clean();
  48.  
  49. $phpThumb = new phpThumb();
  50.  
  51. $phpthumb_version = $phpThumb->phpthumb_version;
  52.  
  53. unset($phpThumb);
  54.  
  55. $GDversion['string']  = phpthumb_functions::gd_version(true);
  56.  
  57. $GDversion['numeric'] = phpthumb_functions::gd_version(false);
  58.  
  59. /*
  60.  
  61.  > END phpThumb
  62.  
  63. */
  64.  
  65. $modelid = $_GET["modelid"];
  66.  
  67. $sql = "SELECT * FROM models WHERE bonusmedia=0 AND models.modelid=".$modelid;
  68.  
  69. $result = mysql_query($sql, $db);
  70.  
  71. $row = mysql_fetch_array($result);
  72.  
  73. $modelfirstname = $row["modelfirstname"];
  74.  
  75. $modellastname = $row["modellastname"];
  76.  
  77. $modeldescription = $row["modeldescription"];
  78.  
  79. $modeldirectoryname = $row["modeldirectoryname"];
  80.  
  81. $modelmainphoto = $row["modelmainphoto"];
  82.  
  83. $freeimage1 = $row["freeimage1"];
  84.  
  85. $freeimage2 = $row["freeimage2"];
  86.  
  87. $freeimage3 = $row["freeimage3"];
  88.  
  89. $freevideothumbname = $row["freevideothumbname"];
  90.  
  91. $freevideotitle = $row["freevideotitle"];
  92.  
  93. $freevideolowresname = $row["freevideolowresname"];
  94.  
  95. $freevideohighdefname = $row["freevideohighdefname"];
  96.  
  97. $freevideoquicktimename = $row["freevideoquicktimename"];
  98.  
  99. $freevideowmv1080 = $row["freevideowmv1080"];
  100.  
  101. $freevideoquicktime1080 = $row["freevideoquicktime1080"];
  102.  
  103. //Show all images for the Model
  104.  
  105. $imagesql = "SELECT * FROM gallery WHERE modelid=".$modelid;
  106.  
  107. //Show all the videoa for the Model
  108.  
  109. $videosql = "SELECT * FROM video WHERE modelid=".$modelid;
  110.  
  111. ?>
  112.  
  113. <html>
  114.  
  115. <head>
  116.  
  117.     <title><?php print $modelfirstname." ".$modellastname ;?> - model photos and video clips</title>
  118.  
  119.     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  120.  
  121.     <meta name="keywords" content="models <?php print $modelfirstname." ".$modellastname ;?>, photos, photo gallery, video, video clips, videos">
  122.  
  123.     <meta name="description" content="model <?php print $modelfirstname." ".$modellastname ;?> in high definition videos and photo galleries.">
  124.  
  125.     <link rel="stylesheet" href="styles/hd.css" type="text/css">
  126.  
  127.     <script language="JavaScript" src="js/navscript.js"></script>
  128.  
  129. </head>
  130.  
  131. <body bgcolor="#999999" background="images/crosshatch_bg.gif" onLoad="MM_preloadImages('images/logo_nav_r2_c1_f2.gif','images/logo_nav_r3_c1_f2.gif','images/logo_nav_r4_c1_f2.gif','images/logo_nav_r5_c1_f2.gif','images/logo_nav_r6_c1_f2.gif','images/logo_nav_r7_c1_f2.gif','images/logo_nav_r8_c1_f2.gif','images/logo_nav_r9_c1_f2.gif','images/logo_nav_r10_c1_f2.gif','images/logo_nav_r11_c1_f2.gif');">
  132.  
  133.     <table width="900" border="0" align="center" cellpadding="0" cellspacing="0">
  134.  
  135.         <tr bgcolor="#000000">
  136.  
  137.             <td height="10" colspan="5"><img src="1px.gif" width="1" height="1"></td>
  138.  
  139.         </tr>
  140.  
  141.         <tr>
  142.  
  143.             <td width="10" rowspan="5" bgcolor="#000000">&nbsp;</td>
  144.  
  145.             <td width="143" rowspan="5" valign="top" background="images/nav_bg.jpg">
  146.  
  147.                 <?php include 'nav.php'; ?>
  148.            
  149.             </td>
  150.  
  151.             <td width="10" rowspan="5" bgcolor="#000000">&nbsp;</td>
  152.  
  153.             <td height="81">
  154.  
  155.                 <?php include 'header.php'; ?>
  156.  
  157.             </td>
  158.  
  159.             <td width="10" rowspan="5" bgcolor="#000000">&nbsp;</td>
  160.  
  161.         </tr>
  162.  
  163.         <tr>
  164.  
  165.             <td height="10" bgcolor="#000000"><img src="1px.gif" width="1" height="1"></td>
  166.  
  167.         </tr>
  168.  
  169.         <tr>
  170.  
  171.             <td align="center" valign="top" bgcolor="#FFFFFF">
  172.  
  173.                 <table width="696" border="0" cellspacing="0" cellpadding="0">
  174.  
  175.                     <tr>
  176.  
  177.                         <td>&nbsp;</td>
  178.  
  179.                     </tr>
  180.  
  181.                     <tr>
  182.  
  183.                         <td valign="top">
  184.  
  185.                             <p><img src="images/model_header.gif" width="696" height="18"></p>
  186.  
  187.                                 <table width="696" border="0" cellspacing="0" cellpadding="0">
  188.  
  189.                                     <tr>
  190.  
  191.                                         <td valign="top">
  192.  
  193.                                             <table width="696" border="0" cellspacing="3" cellpadding="0">
  194.  
  195.                                                 <tr>
  196.  
  197.                                                     <td width="50%" valign="top">
  198.  
  199.                                                         <strong>
  200.  
  201.                                                             <?php print $modelfirstname; ?>
  202.  
  203.                                                             <?php print $modellastname; ?>
  204.  
  205.                                                         </strong>
  206.  
  207.                                                         <p>
  208.                                                            
  209.                                                             <?php
  210.                                                            
  211.                                                             // get the images
  212.                                                             // use $result here to output page content
  213.  
  214.                                                             if (trim($modelmainphoto) == "")
  215.                                                             {
  216.  
  217.                                                                 echo "<img src='freemedia/free_large_coming.jpg'>";
  218.  
  219.                                                             }
  220.  
  221.                                                             else
  222.                                                             {  
  223.  
  224.                                                                 echo "<img src='freemedia/phpThumb.php?src=".$modeldirectoryname."/".$modelmainphoto."&w=300'>";
  225.  
  226.                                                             }
  227.                                                            
  228.                                                             ?>
  229.  
  230.                                                         </p>
  231.  
  232.                                                     </td>
  233.  
  234.                                                     <td valign="top">
  235.  
  236.                                                         <strong></strong>
  237.  
  238.                                                         <table width="100%" border="0" cellspacing="0" cellpadding="3">
  239.  
  240.                                                             <tr>
  241.  
  242.                                                                 <td bgcolor="#990000">
  243.  
  244.                                                                     <strong>
  245.  
  246.                                                                         <font color="#FFFFFF" size="2">
  247.  
  248.                                                                             <?php print $modelfirstname; ?>
  249.  
  250.                                                                             <?php print $modellastname; ?> Previews:
  251.  
  252.                                                                         </font>
  253.  
  254.                                                                     </strong>
  255.  
  256.                                                                 </td>
  257.  
  258.                                                             </tr>
  259.  
  260.                                                             <tr>
  261.  
  262.                                                                 <td>
  263.  
  264.                                                                     <table width="100%" border="0" cellspacing="0" cellpadding="3">
  265.  
  266.                                                                         <tr>
  267.  
  268.                                                                             <td>
  269.  
  270.                                                                                 <?php
  271.                                                                            
  272.                                                                                 // get the images
  273.                                                                                 // use $result here to output page content
  274.  
  275.                                                                                 if (trim($freeimage1) == "")
  276.                                                                                 {
  277.  
  278.                                                                                     echo "<img src='freemedia/free_small_coming.jpg'>";
  279.  
  280.                                                                                 }
  281.  
  282.                                                                                 else
  283.                                                                                 {  
  284.  
  285.                                                                                     echo "<a href='freemedia/".$modeldirectoryname."/".$freeimage1."' onClick=\"javascript:urchinTracker('".$modeldirectoryname."/".$freeimage1."');\"><img src='freemedia/phpThumb.php?src=".$modeldirectoryname."/".$freeimage1."&w=100' border='0'></a>";
  286.  
  287.                                                                                 }  
  288.                                                                                
  289.                                                                                 ?>
  290.  
  291.                                                                             </td>  
  292.  
  293.                                                                             <td>
  294.  
  295.                                                                                 <?php
  296.  
  297.                                                                                 // get the images
  298.                                                                                 // use $result here to output page content
  299.  
  300.                                                                                 if (trim($freeimage2) == "")
  301.                                                                                 {
  302.  
  303.                                                                                     echo "<img src='freemedia/free_small_coming.jpg'>";
  304.  
  305.                                                                                 }
  306.  
  307.                                                                                 else
  308.                                                                                 {  
  309.                                                                                
  310.                                                                                     echo "<a href='freemedia/".$modeldirectoryname."/".$freeimage2."' onClick=\"javascript:urchinTracker('".$modeldirectoryname."/".$freeimage2."');\"><img src='freemedia/phpThumb.php?src=".$modeldirectoryname."/".$freeimage2."&w=100' border='0'></a>";
  311.                                                                                 }  
  312.                                                                                
  313.                                                                                 ?>
  314.  
  315.                                                                             </td>
  316.  
  317.                                                                             <td>
  318.  
  319.                                                                                 <?php
  320.                                                                            
  321.                                                                                 // get the images
  322.                                                                                 // use $result here to output page content
  323.  
  324.                                                                                 if (trim($freeimage3) == "")
  325.                                                                                 {
  326.  
  327.                                                                                     echo "<img src='freemedia/free_small_coming.jpg'>";
  328.  
  329.                                                                                 }
  330.  
  331.                                                                                 else
  332.                                                                                 {  
  333.  
  334.                                                                                     echo "<a href='freemedia/".$modeldirectoryname."/".$freeimage3."' onClick=\"javascript:urchinTracker('".$modeldirectoryname."/".$freeimage3."');\"><img src='freemedia/phpThumb.php?src=".$modeldirectoryname."/".$freeimage3."&w=100' border='0'></a>";
  335.  
  336.                                                                                 }
  337.                                                                                
  338.                                                                                 ?>
  339.  
  340.                                                                             </td>
  341.  
  342.                                                                         </tr>
  343.  
  344.                                                                     </table>
  345.  
  346.                                                                     <?php
  347.  
  348.                                                                     //Now do the same thing for the Free Video
  349.                                                                     if (trim($freevideothumbname) != "")
  350.                                                                     {
  351.  
  352.                                                                         // We have a photo...make a thumbnail of it
  353.                                                                         print "<img src='freemedia/".$modeldirectoryname."/".$freevideothumbname."'><br>";
  354.  
  355.                                                                     }
  356.  
  357.                                                                     if (trim($freevideotitle) != "")
  358.                                                                     {
  359.  
  360.                                                                         //Print the Video Desc
  361.                                                                         print "<font size='2'><b>".$freevideotitle."</b><br>";
  362.  
  363.                                                                     }
  364.  
  365.                                                                     if (trim($freevideohighdefname ) != "")
  366.                                                                     {
  367.  
  368.                                                                         print "<a href='freemedia/".$modeldirectoryname."/".$freevideohighdefname."' onClick=\"javascript:urchinTracker('".$modeldirectoryname."/".$freevideohighdefname."');\">HD Preview Video</a><br>";
  369.  
  370.                                                                     }  
  371.  
  372.                                                                     if (trim($freevideoquicktimename ) != "")
  373.                                                                     {
  374.  
  375.                                                                         print "<a href='freemedia/".$modeldirectoryname."/".$freevideoquicktimename."' onClick=\"javascript:urchinTracker('".$modeldirectoryname."/".$freevideoquicktimename."');\">High Def MP4</a><br></font>";
  376.  
  377.                                                                     }
  378.  
  379.                                                                     if (trim($freevideowmv1080 ) != "")
  380.                                                                     {
  381.  
  382.                                                                         print "<a href='freemedia/".$modeldirectoryname."/".$freevideowmv1080."' onClick=\"javascript:urchinTracker('".$modeldirectoryname."/".$freevideowmv1080."');\">1080p Super HD WMV</a><br></font>";
  383.  
  384.                                                                     }
  385.  
  386.                                                                     if (trim($freevideoquicktime1080 ) != "")
  387.                                                                     {
  388.  
  389.                                                                         print "<a href='freemedia/".$modeldirectoryname."/".$freevideoquicktime1080."' onClick=\"javascript:urchinTracker('".$modeldirectoryname."/".$freevideoquicktime1080."');\">1080p Super HD Quicktime</a><br></font>";
  390.  
  391.                                                                     }
  392.  
  393.                                                                     ?>
  394.  
  395.                                                                     <div align="center">
  396.  
  397.                                                                         <br>
  398.  
  399.                                                                         <a href="join_now.php"><img src="joinhd1.gif" width="307" height="106" border="0"></a>
  400.  
  401.                                                                     </div>
  402.  
  403.                                                                 </td>
  404.  
  405.                                                             </tr>
  406.  
  407.                                                         </table>
  408.  
  409.                                                     </td>
  410.  
  411.                                                 </tr>
  412.  
  413.                                                 <tr>
  414.  
  415.                                                     <td>&nbsp;</td>
  416.  
  417.                                                     <td>&nbsp;</td>
  418.  
  419.                                                 </tr>
  420.  
  421.                                                 <tr>
  422.  
  423.                                                     <td colspan="2" align="left" valign="top">
  424.  
  425.                                                         <?php
  426.                                                    
  427.                                                         // get the images
  428.  
  429.                                                         $query = $videosql." ORDER BY videoid DESC;";
  430.  
  431.                                                         $result = mysql_query($query, $db);
  432.  
  433.                                                         $check = mysql_fetch_array($result);
  434.  
  435.                                                         // use $result here to output page content
  436.                                                    
  437.                                                         if ($check["videoid"] == "")
  438.                                                         {
  439.                                                        
  440.                                                             echo "";
  441.                                                         }
  442.                                                    
  443.                                                         else
  444.                                                         {
  445.                                                        
  446.                                                         ?>
  447.  
  448.                                                         <table width="100%" border="0" cellspacing="0" cellpadding="3">
  449.  
  450.                                                             <tr>
  451.  
  452.                                                                 <td bgcolor="#990000">
  453.  
  454.                                                                     <b>
  455.  
  456.                                                                         <font color="#FFFFFF" size="2">
  457.  
  458.                                                                             <?php print $modelfirstname; ?>
  459.  
  460.                                                                             <?php print $modellastname; ?> Videos (Members Only)
  461.  
  462.                                                                         </font>
  463.  
  464.                                                                     </b>
  465.  
  466.                                                                     <font color="#FFFFFF" size="2">:</font>
  467.  
  468.                                                                 </td>
  469.  
  470.                                                             </tr>
  471.  
  472.                                                             <tr>
  473.  
  474.                                                                 <td>
  475.  
  476.                                                                     <font size="2">
  477.  
  478.                                                                         <strong>
  479.  
  480.                                                                             <font size="1">Note: For best results right click the video link and &quot;save as&quot; to your computer.</font>
  481.  
  482.                                                                         </strong>
  483.  
  484.                                                                         <br>
  485.                                                                        
  486.                                                                         <br>
  487.                                                                        
  488.                                                                         <?
  489.                                                                        
  490.                                                                         print "<table width=100% cellpadding=5><tr>";
  491.  
  492.                                                                         $result = mysql_query($query, $db);
  493.  
  494.                                                                         $count = 0;
  495.  
  496.                                                                         while ($row = mysql_fetch_array($result))
  497.                                                                         {
  498.                                                                            
  499.                                                                             //Print the first column
  500.                                                                             if ($count < 2 )
  501.                                                                             {
  502.  
  503.                                                                                 print "<td><font size=2>";
  504.  
  505.                                                                             }
  506.                                                                             else
  507.                                                                             {
  508.  
  509.                                                                                 $count = 0;
  510.  
  511.                                                                                 print "</tr><tr><td><font size=2>";
  512.  
  513.                                                                             }
  514.  
  515.                                                                             $rsvideodesc = $row["videodesc"];
  516.  
  517.                                                                             $rsvideothumb = $row["videothumb"];
  518.  
  519.                                                                             $videolowdef = $row["videolowdef"];
  520.  
  521.                                                                             $videohighdef = $row["videohighdef"];
  522.  
  523.                                                                             $videoquicktime = $row["videoquicktime"];
  524.  
  525.                                                                             $videowmv1080 = $row["videowmv1080"];
  526.  
  527.                                                                             $videoquicktime1080 = $row["videoquicktime1080"];  
  528.  
  529.                                                                             $dateadded = $row["dateadded"];      
  530.  
  531.                                                                             //Start The Print Rows of Tables
  532.                                                                             // Do some stuff for the THUMB image
  533.                                                                             if (trim($rsvideothumb) != "")
  534.                                                                             {
  535.  
  536.                                                                                 // We have a photo...make a thumbnail of it
  537.                                                                                 print "<img src='freemedia/".$modeldirectoryname."/".$rsvideothumb."'><br>";
  538.  
  539.                                                                             }
  540.  
  541.                                                                             else
  542.                                                                             {
  543.  
  544.                                                                                 // There is no photo...so place the place holder one
  545.                                                                                 print "";
  546.  
  547.                                                                             }
  548.  
  549.                                                                             if (trim($dateadded) != "")
  550.                                                                             {
  551.  
  552.                                                                                 print "Date Added: ".$dateadded."<br>";
  553.  
  554.                                                                             }
  555.  
  556.                                                                             //Print the Video Desc
  557.                                                                             print "<b>".$rsvideodesc."</b><br>";
  558.  
  559.                                                                             if (trim($videohighdef) != "")
  560.                                                                             {
  561.  
  562.                                                                                 print "<a href='members/".$modeldirectoryname."/".$videohighdef."' onClick=\"javascript:urchinTracker('".$modeldirectoryname."/".$videohighdef."');\">High Def WMV</a><br>";
  563.  
  564.                                                                             }  
  565.  
  566.                                                                             if (trim($videoquicktime) != "")
  567.                                                                             {
  568.  
  569.                                                                                 print "<a href='members/".$modeldirectoryname."/".$videoquicktime."' onClick=\"javascript:urchinTracker('".$modeldirectoryname."/".$videoquicktime."');\">High Def MP4</a><br>";
  570.  
  571.                                                                             }
  572.  
  573.                                                                             if (trim($videowmv1080) != "")
  574.                                                                             {
  575.  
  576.                                                                                 print "<a href='members/".$modeldirectoryname."/".$videowmv1080."' onClick=\"javascript:urchinTracker('".$modeldirectoryname."/".$videowmv1080."');\">1080p Super HD WMV</a><br>";
  577.  
  578.                                                                             }
  579.  
  580.                                                                             if (trim($videoquicktime1080) != "")
  581.                                                                             {
  582.  
  583.                                                                                 print "<a href='members/".$modeldirectoryname."/".$videoquicktime1080."' onClick=\"javascript:urchinTracker('".$modeldirectoryname."/".$videoquicktime1080."');\">1080p Super HD Quicktime</a><br>";
  584.  
  585.                                                                             }  
  586.  
  587.                                                                             if ($count == 1)
  588.                                                                             {
  589.  
  590.                                                                                 $count = 3;
  591.  
  592.                                                                             }
  593.  
  594.                                                                             else
  595.                                                                             {
  596.  
  597.                                                                                 $count = $count + 1;
  598.  
  599.                                                                             }  
  600.                                                                            
  601.                                                                             print "</font></td>";
  602.                                                                            
  603.                                                                         }
  604.  
  605.                                                                         print "</tr></table></font></td></tr></table>";
  606.  
  607.                                                                     }  
  608.  
  609.                                                                     ?>
  610.  
  611.                                                                 </td>
  612.  
  613.                                                             </tr>
  614.  
  615.                                                             <tr>
  616.  
  617.                                                                 <td colspan="2" align="left" valign="top">
  618.  
  619.                                                                     <table width="100%" border="0" cellspacing="0" cellpadding="3">
  620.  
  621.                                                                         <tr>
  622.  
  623.                                                                             <td bgcolor="#990000">
  624.  
  625.                                                                                 <b>
  626.  
  627.                                                                                     <font color="#FFFFFF" size="2">
  628.  
  629.                                                                                         <?php print $modelfirstname; ?>
  630.                                                                                        
  631.                                                                                         <?php print $modellastname; ?> Galleries (Members Only)
  632.  
  633.                                                                                     </font>
  634.  
  635.                                                                                 </b>
  636.  
  637.                                                                                 <font color="#FFFFFF" size="2">:</font>
  638.  
  639.                                                                             </td>
  640.  
  641.                                                                         </tr>
  642.  
  643.                                                                         <tr>
  644.  
  645.                                                                             <td>
  646.  
  647.                                                                                 <font size="2">
  648.  
  649.                                                                                     <?php
  650.                                                                                
  651.                                                                                     // get the images
  652.                                                                                     $query = $imagesql." ORDER BY galleryid DESC;";
  653.  
  654.                                                                                     $result = mysql_query($query, $db);
  655.  
  656.                                                                                     $check = mysql_fetch_array($result);
  657.                                                                                
  658.                                                                                     // use $result here to output page content
  659.                                                                                     if ($check["gallerytitle"] == "")
  660.                                                                                     {
  661.  
  662.                                                                                         echo "<br><font color='#ff0000' size=2><b>Sorry! There are no Galleries available for this model</b></font>";
  663.  
  664.                                                                                     }
  665.  
  666.                                                                                     else
  667.                                                                                     {
  668.  
  669.                                                                                         print "<table border='0' cellspacing='1'>";
  670.  
  671.                                                                                         $result = mysql_query($query, $db);
  672.  
  673.                                                                                         while ($row = mysql_fetch_array($result))
  674.                                                                                         {
  675.  
  676.                                                                                             print "<tr><td bgcolor='#FFFFFF' align='left'>";
  677.  
  678.                                                                                             $rsgallerytitle = $row["gallerytitle"];
  679.  
  680.                                                                                             $rsgallerydesc = $row["gallerydescription"];  
  681.  
  682.                                                                                             $rsgallerydirectory = $row["gallerydirectoryname"];
  683.  
  684.                                                                                             $dateadded = $row["dateadded"];      
  685.                                                                                            
  686.                                                                                             //Start The Print Rows of Tables
  687.                                                                                             if (trim($dateadded) != "")
  688.                                                                                             {
  689.  
  690.                                                                                                 print "Date Added: ".$dateadded."<br>";
  691.  
  692.                                                                                             }
  693.  
  694.                                                                                             print "<a href='members/gallery.php?md=$modeldirectoryname&gd=$rsgallerydirectory' class='text' onClick=\"javascript:urchinTracker('$rsgallerydirectory');\">".$rsgallerytitle."</a><br><font color='#000000' size=2>".$rsgallerydesc."</font><br><br>";   
  695.  
  696.                                                                                             print "</td></tr>";
  697.  
  698.                                                                                         }
  699.  
  700.                                                                                         print "</table>";
  701.                                                                                    
  702.                                                                                     }  
  703.                                                                                    
  704.                                                                                     //Now do the same thing for the Videos
  705.  
  706.                                                                                     ?>
  707.  
  708.                                                                                 </font>
  709.  
  710.                                                                             </td>
  711.  
  712.                                                                         </tr>
  713.  
  714.                                                                     </table>
  715.  
  716.                                                                 </td>
  717.  
  718.                                                             </tr>
  719.  
  720.                                                             <tr>
  721.  
  722.                                                                 <td colspan="2" align="left" valign="top">
  723.  
  724.                                                                     <table width="100%" border="0" cellspacing="0" cellpadding="3">
  725.  
  726.                                                                         <tr>
  727.  
  728.                                                                             <td bgcolor="#990000">
  729.  
  730.                                                                                 <strong>
  731.  
  732.                                                                                     <font color="#FFFFFF" size="2">
  733.  
  734.                                                                                         <?php print $modelfirstname; ?>
  735.  
  736.                                                                                         <?php print $modellastname; ?> Bio:
  737.  
  738.                                                                                     </font>
  739.  
  740.                                                                                 </strong>
  741.  
  742.                                                                                 <font color="#FFFFFF" size="2">&nbsp;</font>
  743.  
  744.                                                                             </td>
  745.  
  746.                                                                         </tr>
  747.  
  748.                                                                         <tr>
  749.  
  750.                                                                             <td>
  751.  
  752.                                                                                 <font size="2">
  753.  
  754.                                                                                     <?php print $modeldescription; ?>
  755.  
  756.                                                                                 </font>
  757.  
  758.                                                                             </td>
  759.  
  760.                                                                         </tr>
  761.  
  762.                                                                     </table>
  763.  
  764.                                                                 </td>
  765.  
  766.                                                             </tr>
  767.  
  768.                                                         </table>
  769.  
  770.                                                     </td>
  771.  
  772.                                                 </tr>
  773.  
  774.                                             </table>
  775.                                        
  776.                                         </td>
  777.  
  778.                                     </tr>
  779.  
  780.                                     <tr>
  781.  
  782.                                         <td>&nbsp;</td>
  783.  
  784.                                     </tr>
  785.  
  786.                                 </table>
  787.  
  788.                             </td>
  789.  
  790.                         </tr>
  791.  
  792.                         <tr>
  793.  
  794.                             <td height="10" bgcolor="#000000"><img src="1px.gif" width="1" height="1"></td>
  795.  
  796.                         </tr>
  797.  
  798.                         <tr>
  799.  
  800.                             <td bgcolor="#666666">
  801.  
  802.                                 <?php include 'footer.php'; ?>
  803.                             </td>
  804.  
  805.                         </tr>
  806.  
  807.                         <tr bgcolor="#000000">
  808.  
  809.                             <td height="10" colspan="5"><img src="1px.gif" width="1" height="1"></td>
  810.  
  811.                         </tr>
  812.  
  813.                     </table>
  814.  
  815.                     <img src="1px.gif" width="1" height="1">
  816.  
  817. </body>
  818.  
  819. </html>
Advertisement
Add Comment
Please, Sign In to add comment