El uso de dyanmaic URL y necesita ayuda con un formulario

  • 74123
  • Graduate
  • Graduate
  • No Avatar
  • Registrado: Jul 06, 2005
  • Mensajes: 190
  • Status: Offline

Nota Octubre 7th, 2005, 7:39 pm

PHP Código: [ Select ]
 
<?php
 
include("config/config.php");
 
 
 
   if($submit)
 
  {
 
 
 
      $title = $_POST['title'];
 
     $name = $_POST['name'];
 
      $content = $_POST['content'];
 
 
 
 
 
 
 
         $result = mysql_query("UPDATE news SET title='$title', name='$name', content='$content' WHERE id='$id' ",$connect);
 
 
 
          echo "<b><strong>Thank you! News UPDATED Successfully!</strong>";
 
         // echo "<meta http-equiv=Refresh content=2;url=../index.php target='_self'>";
 
}
 
elseif($id)
 
{
 
 
 
        $result = mysql_query("SELECT * FROM news WHERE id='$id' ",$connect);
 
        while($row = mysql_fetch_assoc($result))
 
             {
 
                $title = $row["title"];
 
            $name = $row["name"];
 
                $content = $row["content"];
 
               
 
?>
 
 
 
<form action="<? echo $PHP_SELF ?>" method="post" name="form">
 
  <p>
 
  <p>Name :<br />
 
    <input name="name" size="40" maxlength="20" value="<? echo $name; ?>">
 
    <br />
 
Headline:<br />
 
<input name="title" size="40" maxlength="255" value="<? echo $title; ?>">
 
<br />
 
<br />
 
<input onClick="document.form.news.value+=''" type="button" value="Bold">
 
<input onClick="document.form.news.value+=''" type="button" value="Italic">
 
<input onClick="document.form.news.value+=''" type="button" value="Underlined">
 
<input onClick="document.form.news.value+='[img src=http://]'" type="button" value="Image">
 
<input onClick="document.form.news.value+='<!-- url0 -->Link[/url]'" type="button" value="URL">
 
<br>
 
<span class="style4"><em>Example: <br>
 
</em>[img src=http://<span class="style1">www.url.com/image.jpg</span>]<br>
 
<!-- url1 --><span class="style1">URL Title</span>[/url] <br />
 
</span><br />
 
<a href="javascript&#058;;" onClick="document.form.news.value+=':@'"><img src="images/smilies/angry.gif" alt=":@" height="15" width="15" /></a>
 
<a href="javascript&#058;;" onClick="document.form.news.value+=':D'"><img src="images/smilies/biggrin.gif" alt=":D" height="15" width="15" /></a>
 
<a href="javascript&#058;;" onClick="document.form.news.value+=':S'"><img src="images/smilies/confused.gif" alt=":S" height="15" width="15" /></a>
 
<a href="javascript&#058;;" onClick="document.form.news.value+='B)'"><img src="images/smilies/cool.gif" alt="B)" height="15" width="15" /></a>
 
<a href="javascript&#058;;" onClick="document.form.news.value+=':)'"><img src="images/smilies/happy.gif" alt=":)" height="15" width="15" /></a>
 
<a href="javascript&#058;;" onClick="document.form.news.value+=':|'"><img src="images/smilies/mellow.gif" alt=":|" height="15" width="15" /></a>
 
<a href="javascript&#058;;" onClick="document.form.news.value+=':('"><img src="images/smilies/sad.gif" alt=":(" height="15" width="15" /></a>
 
<a href="javascript&#058;;" onClick="document.form.news.value+=':P'"><img src="images/smilies/tongue.gif" alt=":P" height="15" width="15" /></a>
 
<a href="javascript&#058;;" onClick="document.form.news.value+=';)'"><img src="images/smilies/wink.gif" alt=";)" height="15" width="15" /></a><br />
 
<br />
 
<textarea name="content"  rows="15" cols="75"><? echo $content; ?></textarea>
 
<br />
 
<br />
 
<input name="submit" type="submit" value="submit" />
 
</form>
 
 
 
<?
 
      }
 
?>
 
 
  1.  
  2. <?php
  3.  
  4. include("config/config.php");
  5.  
  6.  
  7.  
  8.    if($submit)
  9.  
  10.   {
  11.  
  12.  
  13.  
  14.       $title = $_POST['title'];
  15.  
  16.      $name = $_POST['name'];
  17.  
  18.       $content = $_POST['content'];
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.          $result = mysql_query("UPDATE news SET title='$title', name='$name', content='$content' WHERE id='$id' ",$connect);
  27.  
  28.  
  29.  
  30.           echo "<b><strong>Thank you! News UPDATED Successfully!</strong>";
  31.  
  32.          // echo "<meta http-equiv=Refresh content=2;url=../index.php target='_self'>";
  33.  
  34. }
  35.  
  36. elseif($id)
  37.  
  38. {
  39.  
  40.  
  41.  
  42.         $result = mysql_query("SELECT * FROM news WHERE id='$id' ",$connect);
  43.  
  44.         while($row = mysql_fetch_assoc($result))
  45.  
  46.              {
  47.  
  48.                 $title = $row["title"];
  49.  
  50.             $name = $row["name"];
  51.  
  52.                 $content = $row["content"];
  53.  
  54.                
  55.  
  56. ?>
  57.  
  58.  
  59.  
  60. <form action="<? echo $PHP_SELF ?>" method="post" name="form">
  61.  
  62.   <p>
  63.  
  64.   <p>Name :<br />
  65.  
  66.     <input name="name" size="40" maxlength="20" value="<? echo $name; ?>">
  67.  
  68.     <br />
  69.  
  70. Headline:<br />
  71.  
  72. <input name="title" size="40" maxlength="255" value="<? echo $title; ?>">
  73.  
  74. <br />
  75.  
  76. <br />
  77.  
  78. <input onClick="document.form.news.value+=''" type="button" value="Bold">
  79.  
  80. <input onClick="document.form.news.value+=''" type="button" value="Italic">
  81.  
  82. <input onClick="document.form.news.value+=''" type="button" value="Underlined">
  83.  
  84. <input onClick="document.form.news.value+='[img src=http://]'" type="button" value="Image">
  85.  
  86. <input onClick="document.form.news.value+='<!-- url0 -->Link[/url]'" type="button" value="URL">
  87.  
  88. <br>
  89.  
  90. <span class="style4"><em>Example: <br>
  91.  
  92. </em>[img src=http://<span class="style1">www.url.com/image.jpg</span>]<br>
  93.  
  94. <!-- url1 --><span class="style1">URL Title</span>[/url] <br />
  95.  
  96. </span><br />
  97.  
  98. <a href="javascript&#058;;" onClick="document.form.news.value+=':@'"><img src="images/smilies/angry.gif" alt=":@" height="15" width="15" /></a>
  99.  
  100. <a href="javascript&#058;;" onClick="document.form.news.value+=':D'"><img src="images/smilies/biggrin.gif" alt=":D" height="15" width="15" /></a>
  101.  
  102. <a href="javascript&#058;;" onClick="document.form.news.value+=':S'"><img src="images/smilies/confused.gif" alt=":S" height="15" width="15" /></a>
  103.  
  104. <a href="javascript&#058;;" onClick="document.form.news.value+='B)'"><img src="images/smilies/cool.gif" alt="B)" height="15" width="15" /></a>
  105.  
  106. <a href="javascript&#058;;" onClick="document.form.news.value+=':)'"><img src="images/smilies/happy.gif" alt=":)" height="15" width="15" /></a>
  107.  
  108. <a href="javascript&#058;;" onClick="document.form.news.value+=':|'"><img src="images/smilies/mellow.gif" alt=":|" height="15" width="15" /></a>
  109.  
  110. <a href="javascript&#058;;" onClick="document.form.news.value+=':('"><img src="images/smilies/sad.gif" alt=":(" height="15" width="15" /></a>
  111.  
  112. <a href="javascript&#058;;" onClick="document.form.news.value+=':P'"><img src="images/smilies/tongue.gif" alt=":P" height="15" width="15" /></a>
  113.  
  114. <a href="javascript&#058;;" onClick="document.form.news.value+=';)'"><img src="images/smilies/wink.gif" alt=";)" height="15" width="15" /></a><br />
  115.  
  116. <br />
  117.  
  118. <textarea name="content"  rows="15" cols="75"><? echo $content; ?></textarea>
  119.  
  120. <br />
  121.  
  122. <br />
  123.  
  124. <input name="submit" type="submit" value="submit" />
  125.  
  126. </form>
  127.  
  128.  
  129.  
  130. <?
  131.  
  132.       }
  133.  
  134. ?>
  135.  
  136.  


Obtengo este error:
Código: [ Select ]
Parse error: parse error, unexpected $ in /var/www/verysecretsite.com/public_html/verysecretsite_final/includes/admin/panels/news/edit.php on line 68


Cualquier ayuda sería grande.
  • Anonymous
  • Bot
  • No Avatar
  • Registrado: 25 Feb 2008
  • Mensajes: ?
  • Loc: Ozzuland
  • Status: Online

Nota Octubre 7th, 2005, 7:39 pm

  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • Avatar de Usuario
  • Registrado: May 28, 2003
  • Mensajes: 23404
  • Loc: Woodbridge VA
  • Status: Offline

Nota Octubre 7th, 2005, 7:53 pm

[php] <forma de acción = "<? echo $ PHP_SELF?>" método = "post" name = "forma"> [/ php]

Cuando es de $ PHP_SELF se define en su código? Esta sería mi primera pregunta.
Im también asumir la línea 68 es el final de su línea de código que normalmente se produce si hay un parse error como este:
Quote:
Parse error: parse error, inesperado en dólares
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.
  • 74123
  • Graduate
  • Graduate
  • No Avatar
  • Registrado: Jul 06, 2005
  • Mensajes: 190
  • Status: Offline

Nota Octubre 7th, 2005, 8:38 pm

por lo que he undersyand, $ PHP_SELF sólo le dice a presentar la página a sí mismo, no es necesario que se definan.

No sé qué es equivocado ahí, terminé solo reescribir toda la cosa y su trabajo. Por lo que puedo decir que no hay nada diferente (de cualquier significado) en el nuevo.
  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • Avatar de Usuario
  • Registrado: May 28, 2003
  • Mensajes: 23404
  • Loc: Woodbridge VA
  • Status: Offline

Nota Octubre 7th, 2005, 9:02 pm

Intente:
[php] <forma de acción = "<? php echo $ _SERVER [" PHP_SELF "];?>" método = "POST"> [/ php]
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.
  • 74123
  • Graduate
  • Graduate
  • No Avatar
  • Registrado: Jul 06, 2005
  • Mensajes: 190
  • Status: Offline

Nota Octubre 10th, 2005, 3:03 pm

Im un problema con la presentación de un formulario a sí mismo por lo que subir a un db. Traté de la página por sí misma sin necesidad de utilizar y que incluye las obras. He intentado:

Código: [ Select ]
http://www.somewebsite.com/somewebsite_final/includes/admin/panels/news/add.php


Código: [ Select ]
index.php?content=admin&section=panel&edit=news&action=add


Código: [ Select ]
<?php echo $_SERVER['PHP_SELF'];?>


como mi forma de acción. Sí, yo le digo a cargo.
Cuando tengo la página en sí funciona bien, pero si soy tratando de incluir en index.php no funciona, una vez que el botón de envío, sólo le muestra la página de índice.

Página de códigos:
Código: [ Select ]
  <?php
//beginning of Add news
include("../../../../config/config.php");


 if($submit)
 {
   $title = $_POST['title'];
     $name = $_POST['name'];
   $content = $_POST['content'];



       if(!$content){ 
           echo "Error: News is a required field. Please fill it.";
           exit();
       }


     $result = mysql_query("INSERT INTO news (title, name, dtime, content)
            VALUES ('$title','$name',NOW(),'$content')",$connect);
    
     echo "<b><strong>Thank you! News added Successfully!</strong>";
     // echo "<meta http-equiv=Refresh content=2;url=view.php target='_self'>";
        }

else
        {

?>
<form method="post" action="http://www.somewebsite.com/somewebsite_final/includes/admin/panels/news/add.php">
    Name: <br>
<input name="name" size="40" maxlength="20">
       <br>
    Title:<br>
<input name="title" size="40" maxlength="255">
       <br>
    News: <br>
        <input onClick="document.form.news.value+='[b][/b]'" type="button" value="Bold">
        <input onClick="document.form.news.value+='[i][/i]'" type="button" value="Italic">
        <input onClick="document.form.news.value+='[u][/u]'" type="button" value="Underlined">
        <input onClick="document.form.news.value+='[img src=http://]'" type="button" value="Image">
        <input onClick="document.form.news.value+='[url=http://]Link[/url]'" type="button" value="URL">
        <br />
        <a href="javascript:;" onClick="document.form.news.value+=':@'"><img src="images/smilies/angry.gif" alt=":@" height="15" width="15" /></a>
        <a href="javascript:;" onClick="document.form.news.value+=':D'"><img src="images/smilies/biggrin.gif" alt=":D" height="15" width="15" /></a>
        <a href="javascript:;" onClick="document.form.news.value+=':S'"><img src="images/smilies/confused.gif" alt=":S" height="15" width="15" /></a>
        <a href="javascript:;" onClick="document.form.news.value+='B)'"><img src="images/smilies/cool.gif" alt="B)" height="15" width="15" /></a>
        <a href="javascript:;" onClick="document.form.news.value+=':)'"><img src="images/smilies/happy.gif" alt=":)" height="15" width="15" /></a>
        <a href="javascript:;" onClick="document.form.news.value+=':|'"><img src="images/smilies/mellow.gif" alt=":|" height="15" width="15" /></a>
        <a href="javascript:;" onClick="document.form.news.value+=':('"><img src="images/smilies/sad.gif" alt=":(" height="15" width="15" /></a>
        <a href="javascript:;" onClick="document.form.news.value+=':P'"><img src="images/smilies/tongue.gif" alt=":P" height="15" width="15" /></a>
        <a href="javascript:;" onClick="document.form.news.value+=';)'"><img src="images/smilies/wink.gif" alt=";)" height="15" width="15" /></a><br />
<textarea name="content" rows="15" cols="75"></textarea>
       <br>
<input type="submit" name="submit" value="Add News">
       </form>
<?
        }
//End of Add news 
?>
  1.   <?php
  2. //beginning of Add news
  3. include("../../../../config/config.php");
  4.  if($submit)
  5.  {
  6.    $title = $_POST['title'];
  7.      $name = $_POST['name'];
  8.    $content = $_POST['content'];
  9.        if(!$content){ 
  10.            echo "Error: News is a required field. Please fill it.";
  11.            exit();
  12.        }
  13.      $result = mysql_query("INSERT INTO news (title, name, dtime, content)
  14.             VALUES ('$title','$name',NOW(),'$content')",$connect);
  15.     
  16.      echo "<b><strong>Thank you! News added Successfully!</strong>";
  17.      // echo "<meta http-equiv=Refresh content=2;url=view.php target='_self'>";
  18.         }
  19. else
  20.         {
  21. ?>
  22. <form method="post" action="http://www.somewebsite.com/somewebsite_final/includes/admin/panels/news/add.php">
  23.     Name: <br>
  24. <input name="name" size="40" maxlength="20">
  25.        <br>
  26.     Title:<br>
  27. <input name="title" size="40" maxlength="255">
  28.        <br>
  29.     News: <br>
  30.         <input onClick="document.form.news.value+='[b][/b]'" type="button" value="Bold">
  31.         <input onClick="document.form.news.value+='[i][/i]'" type="button" value="Italic">
  32.         <input onClick="document.form.news.value+='[u][/u]'" type="button" value="Underlined">
  33.         <input onClick="document.form.news.value+='[img src=http://]'" type="button" value="Image">
  34.         <input onClick="document.form.news.value+='[url=http://]Link[/url]'" type="button" value="URL">
  35.         <br />
  36.         <a href="javascript:;" onClick="document.form.news.value+=':@'"><img src="images/smilies/angry.gif" alt=":@" height="15" width="15" /></a>
  37.         <a href="javascript:;" onClick="document.form.news.value+=':D'"><img src="images/smilies/biggrin.gif" alt=":D" height="15" width="15" /></a>
  38.         <a href="javascript:;" onClick="document.form.news.value+=':S'"><img src="images/smilies/confused.gif" alt=":S" height="15" width="15" /></a>
  39.         <a href="javascript:;" onClick="document.form.news.value+='B)'"><img src="images/smilies/cool.gif" alt="B)" height="15" width="15" /></a>
  40.         <a href="javascript:;" onClick="document.form.news.value+=':)'"><img src="images/smilies/happy.gif" alt=":)" height="15" width="15" /></a>
  41.         <a href="javascript:;" onClick="document.form.news.value+=':|'"><img src="images/smilies/mellow.gif" alt=":|" height="15" width="15" /></a>
  42.         <a href="javascript:;" onClick="document.form.news.value+=':('"><img src="images/smilies/sad.gif" alt=":(" height="15" width="15" /></a>
  43.         <a href="javascript:;" onClick="document.form.news.value+=':P'"><img src="images/smilies/tongue.gif" alt=":P" height="15" width="15" /></a>
  44.         <a href="javascript:;" onClick="document.form.news.value+=';)'"><img src="images/smilies/wink.gif" alt=";)" height="15" width="15" /></a><br />
  45. <textarea name="content" rows="15" cols="75"></textarea>
  46.        <br>
  47. <input type="submit" name="submit" value="Add News">
  48.        </form>
  49. <?
  50.         }
  51. //End of Add news 
  52. ?>
  • joebert
  • Sledgehammer
  • Genius
  • No Avatar
  • Registrado: Feb 10, 2004
  • Mensajes: 13455
  • Loc: Florida
  • Status: Offline

Nota Octubre 10th, 2005, 3:40 pm

¿Dónde está $ presentar se define?
¿La forma de visualización cuando "sólo muestra index.php al pulsar enviar"?
¿Cuál es el aspecto index.php?
Strong with this one, the sudo is.
  • 74123
  • Graduate
  • Graduate
  • No Avatar
  • Registrado: Jul 06, 2005
  • Mensajes: 190
  • Status: Offline

Nota Octubre 10th, 2005, 5:05 pm

1) <input type="submit" name="submit" value="Add News">

2) No, muestra las noticias (como por defecto). No se muestra "¡Gracias! Noticias agregada con éxito!" Como debería.

Index.php es:
Código: [ Select ]
<?
    switch($content) {
        case "index":
        include ("includes/news/index.php");
        break;
        case "admin":
        include ("includes/admin/index.php");
        break;
        case "hand_of_choice":
        include ("includes/hand_of_choice/index.php");
        break;
        case "handhistory":
        include ("includes/handhistory/index.php");
        break;
        case "way_to_vegas":
        include ("includes/way_to_vegas/index.php");
        break;
        case "*plum*":
        include ("includes/*plum*/index.php");
        break;
        case "forum":
        include ("includes/forum/index.php");
        break;
        case "donations":
        include ("includes/donations/index.php");
        break;
        case "contact":
        include ("includes/contact/index.php");
        break;
        case "challenge":
        include ("includes/challenge/index.php");
        break;
        case "join":
        include ("includes/join/index.php");
        break;
        case "showhand":
        include ("includes/showhand/index.php");
        break;
        default:
        include ("includes/news/index.php");
        break;
    }

?>
  1. <?
  2.     switch($content) {
  3.         case "index":
  4.         include ("includes/news/index.php");
  5.         break;
  6.         case "admin":
  7.         include ("includes/admin/index.php");
  8.         break;
  9.         case "hand_of_choice":
  10.         include ("includes/hand_of_choice/index.php");
  11.         break;
  12.         case "handhistory":
  13.         include ("includes/handhistory/index.php");
  14.         break;
  15.         case "way_to_vegas":
  16.         include ("includes/way_to_vegas/index.php");
  17.         break;
  18.         case "*plum*":
  19.         include ("includes/*plum*/index.php");
  20.         break;
  21.         case "forum":
  22.         include ("includes/forum/index.php");
  23.         break;
  24.         case "donations":
  25.         include ("includes/donations/index.php");
  26.         break;
  27.         case "contact":
  28.         include ("includes/contact/index.php");
  29.         break;
  30.         case "challenge":
  31.         include ("includes/challenge/index.php");
  32.         break;
  33.         case "join":
  34.         include ("includes/join/index.php");
  35.         break;
  36.         case "showhand":
  37.         include ("includes/showhand/index.php");
  38.         break;
  39.         default:
  40.         include ("includes/news/index.php");
  41.         break;
  42.     }
  43. ?>


Por supuesto que también tiene la gfx y HTML.
  • joebert
  • Sledgehammer
  • Genius
  • No Avatar
  • Registrado: Feb 10, 2004
  • Mensajes: 13455
  • Loc: Florida
  • Status: Offline

Nota Octubre 10th, 2005, 8:31 pm

En el formulario,
El primero que envió
Utilice esta acción.
Código: [ Select ]
action="<?php echo $_SERVER['PHP_SELF'] . '?content=admin&section=panel&edit=news&action=add'; ?>"


En "index.php"
Antes de que el interruptor
Añadir este,
Código: [ Select ]
$submit = false;
$content = false;
$section = false;
$edit = false;
$action = false;
if(!empty($_POST['submit']))
{
    $submit = $_POST['submit'];
}
if(!empty($_GET['content']))
{
    $content = $_GET['content'];
}
if(!empty($_GET['section']))
{
    $section = $_GET['section'];
}
if(!empty($_GET['edit']))
{
    $edit = $_GET['edit'];
}
if(!empty($_GET['action']))
{
    $action = $_GET['action'];
}
  1. $submit = false;
  2. $content = false;
  3. $section = false;
  4. $edit = false;
  5. $action = false;
  6. if(!empty($_POST['submit']))
  7. {
  8.     $submit = $_POST['submit'];
  9. }
  10. if(!empty($_GET['content']))
  11. {
  12.     $content = $_GET['content'];
  13. }
  14. if(!empty($_GET['section']))
  15. {
  16.     $section = $_GET['section'];
  17. }
  18. if(!empty($_GET['edit']))
  19. {
  20.     $edit = $_GET['edit'];
  21. }
  22. if(!empty($_GET['action']))
  23. {
  24.     $action = $_GET['action'];
  25. }


Que debe al menos conseguir que en includes / admin / index.php si no a través de todo el guión.
Strong with this one, the sudo is.
  • 74123
  • Graduate
  • Graduate
  • No Avatar
  • Registrado: Jul 06, 2005
  • Mensajes: 190
  • Status: Offline

Nota Octubre 10th, 2005, 9:57 pm

Funciona, gracias mucho! Esta es una gran ayuda =)
  • joebert
  • Sledgehammer
  • Genius
  • No Avatar
  • Registrado: Feb 10, 2004
  • Mensajes: 13455
  • Loc: Florida
  • Status: Offline

Nota Octubre 10th, 2005, 10:20 pm

Estamos encantados de que esto funciona, basta con que sus variables están pasando por controles de seguridad más adelante (si no es que en adición) y me hacen un favor, no iniciar nuevos temas sobre la misma cuestión como esta nunca más, se vuelve confuso. Envío al hilo original con cuentos de su progreso hace las cosas mucho más fácil.
Strong with this one, the sudo is.
  • 74123
  • Graduate
  • Graduate
  • No Avatar
  • Registrado: Jul 06, 2005
  • Mensajes: 190
  • Status: Offline

Nota Octubre 11th, 2005, 8:31 pm

I googled controles de seguridad y los resultados que he recibido eran un poco confusas. ¿Qué quiere decir exactamente?

He trasladado la web a un servidor diferente y ahora cuando hago clic en el vínculo para editar el contenido, no funciona. Simplemente recargas y muestra la lista de cosas que puedo editar. ¿El servidor necesita tener algo activado para que funcione?
  • Funny_Fuzz
  • Mastermind
  • Mastermind
  • Avatar de Usuario
  • Registrado: Ene 18, 2005
  • Mensajes: 1517
  • Status: Offline

Nota Octubre 12th, 2005, 1:34 am

Su código se ve diferente a la mía. Yo uso:
[php ]<?=$_ SERVER [ "PHP_SELF"];?> [/ php]
En lugar de
[php] <? php echo $ _SERVER [ "PHP_SELF"];?> [/ php]
Me pregunto si es que realmente marca la diferencia, aunque...
THE BEST THINGS IN LIFE ARE FREE...
JOIN THE MEDIASHARK COMMUNITY TODAY!

Publicar Información

  • Total de mensajes en este tema: 12 mensajes
  • Usuarios navegando por este Foro: No hay usuarios registrados visitando el Foro y 107 invitados
  • No puede abrir nuevos temas en este Foro
  • No puede responder a temas en este Foro
  • No puede editar sus mensajes en este Foro
  • No puede borrar sus mensajes en este Foro
  • No puede enviar adjuntos en este Foro
 
 

© 2011 Unmelted, LLC. Ozzu® es una marca registrada de Unmelted, LLC