Supportnet Computer
Planet of Tech

Supportnet / Forum / Webseiten/HTML

bei frontpage bilder einfügen ohne die bilder extra hochzuladen? Geht das?





Frage

Hallo ich habe viele viele kleine Bilder die ich gerne bei frontpage einfügen würde. Ich möchte mir gerne die Arbeit ersparen diese Bilder einzeln hochzuladen und dann zu verlinken. Gibt es eine Möglichkeit diese kleinen .jpg 's direkt bei frontpage zu integrieren oder geht das überhaupt nicht? Wenn es geht, welche Funktion muss ich aktivieren? Vielen Dank + Gruß Peter

Antwort 1 von Targon

hi peter.
wie meinst du integrieren? in den htmlcode? definitiv nicht - Html ist eine beschreibungssprache, in der du nur text, links und formatierungen setzen kannst. Medien müssen in extra dateien liegen.
Du kannst doch (wenn du fp dazu gebracht hast dir ein "web" zu verwalten) die alle in einem aufwasch hochladen. Wenn nicht, dann nimm wsftp und markiere alle und klick auf den pfeil richtung serververzeichnis. schon sind alle oben.
grüße targon

Antwort 2 von want2cu

hallo Peter,

vielleicht kannst du das über einen kleinen Umweg machen.

Es gibt Thumbnail-Programme, die von Bildern in einem Ordner automatisch eine HTML-Datei anlegen, in der alle Bilder als Thumbs verlinkt sind, die Thubs werden in einem neuen Unterordner separat gespeichert.

Du könntest du also das Erstellen der HTML-Seite mit den ganzen Links abnehmen lassen. Du müßtest dann nur noch ggf. die Thumbs gegen die größeren Bilder austauschen(außerhalb von Frontpage mit dem Explorer kopieren/umbenennen).

Wenn jemand noch was eleganteres kennt, her mit dem Tipp!

Wenn deine Mail-Addy stimmt, hast du Post (mit dem Programm) ;-)

Cu
Klaus

Antwort 3 von want2cu

na , klappts oder was ist Sache???

Cu
Klaus

Antwort 4 von Nessus

Hi,

mit einem FTP-Programm alles hochladen und folgendes Script (*.php3) in den gleichen Ordner legen:

<HTML>
<BODY>
<? 
/*
Simple Image Viewer PHP 1.01
Copyright 2000 KMR Enterprises
Scripted by TDavid @ http://www.tdscripts.com/

Created: 2/1/2000
Last Modified: 7/31/2000

By using this script you agree to indemnify KMR Enterprises,
its owners, programmers, and subsidiaries from any and all 
liability that might arise from its use or misuse. This copyright 
notice MUST remain in tact in order to legally use this script. 
Removal and/or modification of the copyright notice voids registration.              
                                                                       *
This script is freeware and you are free to modify it, but you do 
*NOT* have permission to redistribute or sell the code for     
this program, nor claim it is your own. If you do use it, I would
sure appreciate a linkback to http://www.tdscripts.com/

INSTRUCTIONS:
1. Simply FTP this file to any image directory.
2. Call the file with your browser and it will cycle through all
images in that same directory.
*/

$img_directory = opendir(".");
while($img = readdir($img_directory))
{
$images[] = $img;
}
closedir($img_directory);
$size = count($images);
 if ($sp > 0) 
 { 
   $image = $images[$sp];
   if ($image == "") 
   {
   print("You have reached the end of the images in this directory.");
   print("</BODY></HTML>");
   exit;
   }
   elseif ($image == "..") {
    $sp++; 
    $image = $images[$sp]; 
   }
   elseif ($image == "image_viewer.php3") {
    $sp++;
    $image = $images[$sp];
     if ($image == "") 
    {
     print("You have reached the end of the images in this directory.");
     print("</BODY></HTML>");
     exit;
    }
   }
 } else {
   $break = explode(".", $image);
     if(($break[1] == "gif") OR ($break[1] == "jpg") OR ($break[1] == "png"))
     { 
       $image = $images[0];
       if ($image == ".") { $image = $images[1]; $sp=1; } 
       if ($image == "..") { $image = $images[2]; $sp=2;}
     }
 }
print("<img src=\"$image\">");
print("<br>I am displaying picture file: <strong>$image</strong><br>");
$sp++;
?>
<form method="post" action="image_viewer.php3">
<input type="hidden" name="sp" value="<?print($sp);?>">
<input type="submit" value="Display Next Picture">
</form>
</BODY>
</HTML>


Nessus

Ich möchte kostenlos eine Frage an die Mitglieder stellen:


Ähnliche Themen:


Suche in allen vorhandenen Beiträgen: