Crypter Links zusammen unter einem Hoster Link
Habe folgendes Problem. Ich möchte das beide Crypter Links zusammen unter einem Hoster Bild angezeigt werden.
Aussehen soll es so:
https://www.szenebox.org/images/_imported/2017/05/4.jpg
Hier zu habe ich zwei Möglichkeiten:
PHP-Code:
for (i = 0; i < IMirror.Count; i++)
{
for (j = 0; j < IMirror[I].CrypterCount; j++)
{
switch (IMirror[I].Hoster)
{
case "Uploaded.net":
print("[img]https://www.szenebox.org/images/_imported/2017/05/5.jpg[/img] \r\n [url=" + IMirror[I].Crypter[J].Value + "] " + IMirror[I].Crypter[J].Value + " [/url]\r\n\r\n");
case "Share-online.biz":
print("[img]https://www.szenebox.org/images/_imported/2017/05/6.jpg[/img] \r\n [url=" + IMirror[I].Crypter[J].Value + "] " + IMirror[I].Crypter[J].Value + " [/url]\r\n\r\n");
}
}
}
print("\r\n[/CENTER]");
}
Oder diesen Code evtl könnte man auch hier einfach ne StringReplace Funktion einbauen das eben Mirror 1 durch das Uploaded IMG ersetzt wird und bei Mirror 2 durch das Share-Online Picture usw:
PHP-Code:
for(i = 0; i < IMirror.Count; i++)
{
if(i != 0)
print("\r\n");
print("\r\n[b]Mirror: " + IntToStr(I + 1) + "[/b]\r\n");
for(j = 0; j < IMirror[I].CrypterCount; j++)
{
print("\r\n[url=" + IMirror[I].Crypter[J].Value + "] " + IMirror[I].Crypter[J].Value + " [/url]");
}
}