imaginepaolo Web Design Agency. Un BLOG con tutti gli strumenti e le risorse su: SEO, Web Design, Facebook... Web Design Napoli, Web Design Avellino... Il sito di un Italian Web Designer.

 
Web Design Transparent Web Design Transparent Web Design Transparent Web Design Transparent

Web Design Blog - Web Design

Di seguito gli interventi pubblicati in questa sezione, in ordine cronologico.
 
 
Di Admin (del 20/03/2007 alle 15:33:42, in Web Design, letto 2142 volte)
Condividi
MySQL is a perfect database solution for small to medium websites. If your backend MySQL database is well optimized and properly structured it can serve thousands of visitors daily, without degrading your server performance. In this article I'll show you how to connect to MySQL database from ASP. You will have to install MySQL ODBC Driver-MyODBC 3.51 if you don't have it on your server yet. You can download it here: http://www.mysql.com/downloads/api-myodbc-3.51.html

<%
Dim sConnection, objConn , objRS

sConnection = "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=localhost; DATABASE=Your_Mysql_DB; UID=mysql_username;PASSWORD=mysql_password; OPTION=3"

Set objConn = Server.CreateObject("ADODB.Connection")

objConn.Open(sConnection)

Set objRS = objConn.Execute("SELECT FirstName, LastName FROM tblUsers")


While Not objRS.EOF
Response.Write objRS.Fields("LastName") & ", " & objRS.Fields("FirstName") & "
"
Response.Write & " "
objRS.MoveNext
Wend

objRS.Close
Set objRS = Nothing
objConn.Close
Set objConn = Nothing
%>

fonte: http://www.aspdev.org/articles/asp-mysql-connect/
 
Di Admin (del 23/03/2007 alle 10:55:34, in Web Design , letto 1674 volte)
Condividi

Riporto un bellissimo articolo di Alessandro Fulciniti

Una delle letture più interessanti che ho fatto di recente è l'ultimo articolo su Digital Web Magazine, ovvero Redesigning the ExpressionEngine Site, in cui l'autore espone il suo processo di sviluppo per il recente redesign del sito di Expression Engine. Se è vero che quello che osserviamo in un sito è il risultato, è davvero interessante scoprire da sviluppatori come altri l'hanno ottenuto, anche solo per confrontare la propria metodologia o trarre utili suggerimenti.

Ho raccolto negli ultimi tempi alcune letture sul workflow dello sviluppo web, e ne approfitto per presentarvele. Il primo è il recente sito Design Workflows che racchiude anche molte interviste a noti blogger e designer, principalmente orientate proprio sul workflow. A cui aggiungo alcuni articoli tra i miei bookmark:

 
Di Admin (del 30/03/2007 alle 14:35:49, in Web Design, letto 2135 volte)
Condividi
Una utilissima funzione che disabilita il tasto destro del mouse

<script language=JavaScript>
<!--
var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->
</script>
 
Di Admin (del 03/04/2007 alle 19:25:40, in Web Design , letto 1278 volte)
Condividi
Non potevo non segnalare questo articolo di Alessandro Fulciniti:

Eccoci ad un nuovo appuntamento dedicato ai bookmark. Cominciamo con il processo di sviluppo di un sito web: un'ottima aggiunta al post Il workflow di un sito web pubblicato una decina di giorni fa qui sul blog è il recente The web design process su Tutorialblog.

E sempre su TutorialBlog vale la pena di citare alcune ispirazioni notevoli, ben 120 siti raccolti in quattro post: 30 Great Website Designs, 30 one page websites, 30 red websites e 30 green websites.

Passiamo a un altro sito ricco di risorse: Smashing Magazine, che dopo 83 temi per Wordpress presenta 8 fresh and clean Wordpress themes, davvero belli.

Ottima poi la segnalazione dei 4 blank wordpress themes, valida soprattutto come punto di partenza.

Alcune risorse sul colore: un ottimo tutorial sulla teoria del colore si può trovare in Color Theory Tutorial by Worqx; un generatore di palette semplice ma efficace è Elvan Online; funziona solo su Firefox per quanto ne so, ma merita davvero la Sphere di Colorjack.

Concludo con un pratico strumento realizzato da Alex La Rosa e Fabio Fidanza diventato molto popolare di recente nei circuiti di social networking : Stripe Generator, per generare immagini con diagonali, gradienti e ombre.

 
Di Admin (del 16/04/2007 alle 12:11:41, in Web Design , letto 2568 volte)
Condividi
Ho trovato questo articolo molto interessante:

Recently, I have been experimenting with the use of php in flash, so I decided to put it to good use. So, here is the step by step guide to making a flash movie that uses php to find the user’s IP and host. A working example can be found Here.

Find the code

The php that I will be using in this project will find the user’s IP and Host address, and then print it in a way that flash understands. You can even add html to the php if you allow the “Render Text as HTML” feture in flash.

The code I will be using in the external php file is exactly as shown here. (feel free to download and edit this file, and alter it as you wish)

Which will result in this.

Notice that I have used some simple html in the code, in this case to center the content, but flash even supports the use of links in the external source, so make sure you play around.

The reason there is a “ip=” before the php is that in the flash we will add a variable “ip” to a dynamic text box, telling it to get its content from anything after the “ip=”, which in this case will be an external php file.

The creation of the flash movie

With the coding out of the way, we can get on to loading the php with the movie.

First things first, create a new blank flash document, and insert a text box, making sure it is set to “dynamic”, and has “ip” in the variable. Also, if you are planning to use html in the movie you will need to toggle on the “render text as html” option (see below).

click to enlarge

To make the php file load with the movie, click on any blank part of the slide and press “F9″ on your keyboard.

Put in the “Actions - Frame” window:

loadVariablesNum(”ip-host.php”, 0);

(Change the “ip-host.php” to the external php file that you will be using.)

actions-frame.jpg

Thats basically it. Upload the flash file and the php file to your server, and there you have it.

example.fla - 32kb
The editable flash source file.

ip-host.txt - 214b
The external php. (Rename to ip-host.php)

Any problemsà Email me, or leave a comment. This tutorial is at the tip of the iceburg; there are many more uses of php in flash, its just a case of trying them...
 
Di Admin (del 16/04/2007 alle 12:24:36, in Web Design , letto 1307 volte)
Condividi
Ho esplorato un pò il codice per riprodurre una pagina come il link in esempio alanunleashed in cui il top-page va in trasparenza. Per riprodurre questo effetto bisogna fare i seguenti passi:

1- Caricare una immagine con trasparenza lineare nella cartella http://www.nomesito.com/images/page-top.png 2- nel codice della pagina inserire:
&#lt img id="top-bg" src="http://www.nomesito.com/images/page-top.png" alt="pagetop" / &#gt
3- Inserire negli stili CSS il codice:

#top-bg{ position: fixed; width:100%; height:20px; }
e il gioco è fatto. Avete suggerimenti?
 
Di Admin (del 27/04/2007 alle 09:47:10, in Web Design , letto 1246 volte)
Condividi
Indagine conoscitiva sul mondo dei Web Designers...
Designers, developers, project managers. Writers and editors. Information architects and usability specialists. People who make websites have been at it for more than a dozen years, yet almost nothing is known, statistically, about our profession. Who are weà Where do we liveà What are our titles, our skills, our educational backgroundsà Where and with whom do we workà What do we earnà What do we valueà


Rispondi anche tu...

 
Di Admin (del 28/04/2007 alle 13:27:29, in Web Design , letto 1414 volte)
Condividi
Un pò di links:
25 scripts
14 scripts
Buona raccolta
20 gallerie
10 free css

Suggeritemi altri links...
 
mag02mer
What is Mint?
Di Admin (del 02/05/2007 alle 10:10:50, in Web Design , letto 1217 volte)
Condividi
Mint is an extensible web site analytics program. Its interface is an exercise in simplicity. Visits, referrers, popular pages and searches can all be taken in at a glance on Mint's flexible dashboard. Learn more!
 
Di Admin (del 12/05/2007 alle 12:19:51, in Web Design , letto 1373 volte)
Condividi

Riccardo Degni un giovane programmatore ha creato una libreria Javascript superleggera basata proprio sul framework MooTools che è uno di più validi framework in circolazione. I link ai demo sono davvero sorprendenti, il sito ufficilale è disponibile su moord.it.

 
Pagine: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

 

 

 

 

 

 

 

Metatag

Web Design - Professional Blog | Napoli | Avellino | Dal 2001 leader per i Web Designers Pro - I consigli di imaginepaolo per creare un blog di successo, migliorare il tuo blog e guadagnare con adsense. Risorse su web design, online publishing, internet marketing, search engine, ...... - Web, Design, Agency, Designers, Napoli, Avellino, Agenzia Web, Siti Web, Sito Web, Realizzazione Siti Web, Creare Sito Web, Creazione Siti Web, Creare Siti Web, Siti Internet, Sito Internet, Hosting, Motori di Ricerca, E-commerce, Submit Links, Awards, Indicizzazioni Professionali...
 
 
Se la merda avesse valore, i poveri nascerebbero senza buco del culo...

Suggerimenti...

Questi links sono stati selezionati per voi e indicizzati da Google Adsense.

Risorse per Web Designers

In questa sezione risorse per web designers, trends, news, e tecniche ricercate in tutto il web.



Newsletter

Iscriviti a questa newsletter gratis e riceverai tutte le notizie più importanti sul Web Design!



Blogs

Web Design Blog Attualità (408)
Web Design Blog Books (28)
Web Design Blog CMS, CRM, DEM (23)
Web Design Blog Concorsi (1)
Web Design Blog Design Trends (49)
Web Design Blog Download (4)
Web Design Blog e-commerce (4)
Web Design Blog Flash (18)
Web Design Blog Fotografia (51)
Web Design Blog Grafic Design (77)
Web Design Blog Internet Media (377)
Web Design Blog Internet trends (139)
Web Design Blog Mobile (3)
Web Design Blog Phishing e Security (40)
Web Design Blog Social Networks (76)
Web Design Blog Web Design (405)
Web Design Blog Web Marketing (255)

Gli interventi più cliccati

Ultimi commenti:
Web Design Comments questa foto in verità non mi dice nulla.....non mi emoziona affatto
07/05/2012 alle 13:48:56Di gil
Web Design Comments Io utilizzo il pacchetto CMSCloud di www.Server.it e va da dio! :)
29/04/2012 alle 16:19:53Di antonio
Web Design Comments Questi dati sono davvero interessanti...Ma nel 2012 quale sarà il trend effettivo?
29/12/2011 alle 11:04:33Di Francesco
Web Design Comments Articolo di notevole importanza, ben fatto, è utilissimo leggerlo, grazie
04/11/2011 alle 16:52:13Di siti internet
Web Design Comments Questo sito e' fantastico! me lo metto nei miei favoriti. Rende la possibilita' di fare dei viaggi f...
25/10/2011 alle 17:01:21Di Rosa
Web Design Comments Ottimo post
03/10/2011 alle 00:01:14Di Siti Internet Online
Web Design Comments Ottimo suggerimento Paolo. Questi template sono molto utili e soprattutto fanno risparmiare un sacco...
05/09/2011 alle 10:21:01Di AntonioMecca
Web Design Comments !!! Ho vinto !!!Ottimo!Nel fine settimana lo proverò...
16/06/2011 alle 12:25:06Di AGCube
Web Design Comments ho inserito un nuovo video su youtube, "Scrittori di Sardegna, sottofondo cafe del mar" http://www.y...
06/06/2011 alle 12:53:40Di mrsantino71
Web Design Comments salve vorrei conoscere, se è possibile l'origine del sito www.scarpevendita.com.e la sua attendibili...
05/06/2011 alle 21:27:48Di tatiana
Web Design Comments se volete una newsletter sicura, affidabile,senza spese aggiuntive, con registrazioni brevi, con tut...
19/05/2011 alle 15:34:33Di mariello
Web Design Comments Vorrei far scrivere in automatico con una mia applicazione una batch ftp in native-mode (senza clien...
14/05/2011 alle 12:16:15Di Helmut Holzenbein
Web Design Comments Ciao!Siamo l redazione di Uniroma tv. Visto il tema del tuo blog credo ti possa interessare il servi...
12/05/2011 alle 10:42:17Di Uniroma.tv
Web Design Comments per le mie news ho scelto fastletter
11/05/2011 alle 16:19:33Di francesco
Web Design Comments http://xlogic.org è un ottimo hosting per wordpress
10/05/2011 alle 15:20:41Di Mariella
Web Design Comments Ho vinto qualcheccosa?!?!
20/04/2011 alle 19:26:52Di AG Cube
Web Design Comments OTTIMO
18/04/2011 alle 18:47:47Di paola
Web Design Comments grazie by http://www.youpixel.it/
22/03/2011 alle 14:07:44Di silvia
Web Design Comments Avete mai provato Wide.it (vedi link)? Mi sapete dare un parere??
16/03/2011 alle 17:55:17Di Hosting Wordpress
Web Design Comments Partecipo!
04/03/2011 alle 17:19:17Di j4ck86

Web Design Gallery

web design images Art (27)
web design images Attualità (3)
web design images Blog (2)
web design images Design Trends (13)
web design images Marketing (2)
web design images Varie (2)

Le fotografie più cliccate

Classifica articoli


Paolo Franzese

Creare con passione, inventare nel segno dell'esperienza decennale, offrire il miglior design al vostro sito-web per renderlo sorprendente durante la navigazione, accattivante, semplice ed efficace in ogni suo aspetto...
Arte, creatività e professionalità si fondono per dar vita alla vostra strategia di successo, prima ancora di scegliere quale piattaforma o servizio tecnico utilizzare: se state per progettare o riprogettare il vostro sito web o il vostro blog saremo felici di aiutarvi.


Ads here

Contattaci se sei interessato a fare pubblicità su questo sito. Perchè fare pubblicità qui? Leggi


Top 10 Awards



Sondaggi

Cosa preferite per la vostra attività?

 un buon sito
 migliaia di followers

Web Design Inspirations

Get the Flash Player to see this rotator.

Top 10 users



23/06/2025 @ 02:23:19
pagina caricata in 0,168 sec.
IP address: 18.97.14.87


imaginepaolo in:

Web Design English  Web Design EN
Web Design French  Web Design FR
Web Design Hindi  Web Design HI
Web Design Spanish  Diseño Web ES
Web Design German  Web Design DE
Web Design Chinese  Web Design CN