View Single Post
  #1  
Old 12-17-2012, 03:20 PM
draugluin's Avatar
draugluin draugluin is offline
Member
 
Join Date: Oct 2011
Location: germany
Posts: 120
Gender: Unknown/Other
Credits: 13,938
draugluin is on a distinguished road
Default Mys v 1.3.2 - own created pages

in Mys 1.3.1 I have pages with a structure like this
PHP Code:
<?php
include("functions/functions.php");
include(
"functions/functions_users.php");
include(
"functions/functions_adopts.php");
include(
"inc/lang.php");

if(
$isloggedin == "yes")     

$article_title "Title";
$article_content " and more text...<br>
    <img src=http://site.com/pic/pic.gif> 
        <a href=http://thissite.com>
                  <img src=http://picutres.com/nature/wood.gif  ></a>
"
;
 
echo 
showpage($article_title$article_content$date);
?>
I would like to generate a map with coords, mouseovereffects and so on.

Is there a ability to create this in Mys 1.3.2 and if so ... how ?

Reply With Quote