I have tow questions actaully:

  1. Does anyone know how to integrate PHPlist with an already existing form on their website?
  2. HOw do I make a person's photo 3D for placement in an SWF file for a website

I have a 2 text field form (name and email) that I am trying to integrate with PHPlist. The website is already going so I don't want to have a form separate from the site. There are some other problems I'm having with the PHP program but I'll get to those after i get this answer.

Also, being new to flash design/development, there is a website I am trying to mimic just for practice sake--www.delmcneal.com. I like how he has the 3D looking picture overlaying the swf on every page. I believe I can accomplish the swf part. It's the 3D picture part i don't know how to achieve. Can anyone help with that?

Dani AI

Generated

For — two practical paths, plus a modern caveat.

  1. Keep the phpList workflow intact: have your site form either post directly to phpList’s public subscribe endpoint, or validate locally then server-to-server POST the same fields so phpList handles confirmations, list IDs and bounce handling. Avoid directly inserting rows into phpList’s database unless you fully understand its schema and subscription workflow. See the official phpList manual for the exact endpoint and required field names: phpList manual.

Example server-side POST (replace URL and field keys per your phpList install):

$formData = ['name' => $name, 'email' => $email]; // adapt keys per your phpList install
$ch = curl_init('https://example.com/path/to/phpList/subscribe');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $formData);
$response = curl_exec($ch);
curl_close($ch);
  1. Image for SWF: @MidiMagic and @buddylee17 are right that the look begins in the photograph and with edge work in an editor. For best results prepare a high‑resolution PNG with a clean layer mask (use Refine Edge/Select Subject), keep the soft shadow on its own layer so you can tweak opacity/blur, and export PNG‑24 with no matte to avoid fringe pixels. If you must use Flash, enable smoothing on imported bitmaps; if not, keep the image as a foreground PNG with an independent shadow layer.

Flash is end‑of‑life — consider HTML5/CSS3 or Canvas for future compatibility. A simple CSS approach to mimic a slight 3D tilt and shadow:

.photo {
  transform: perspective(800px) rotateY(-8deg);
  filter: drop-shadow(8px 12px 18px rgba(0,0,0,0.45));
}

Background reading: phpList manual above and Adobe’s Flash end‑of‑life notice: Adobe Flash end-of-life. For CSS transforms and modern alternatives see the MDN docs: MDN transform docs.

Recommended Answers

All 3 Replies

The 3D effect of the picture itself is done by the photographer at the time the picture is taken.

This is a lighting technique I have used in photography. The keylight is placed in front, above and to one side of the subject (in this photo, it is to the upper left of the camera). Then, other fill-in lights are added to produce the wanted 3D effect.

The shadow is done with a gradient from the edge of the image to the transparent background.

Does anyone know how to integrate PHPlist with an already existing form on their website?
No I have never messed with a pre made mailing list, but I can explain how to use a flash movie to insert users into an existing mysql mailing list.

HOw do I make a person's photo 3D for placement in an SWF file for a website.

The site is just taking a picture with a decent camera and using the Photoshop extraction tool to extract the target(in this case the speaker) from the pic. Then they add a bit of a black outer glow to the layer. Most pictures are taken from an elevated or side vantage point. Both of which are known to increase the 3d effect. The pic is then imported into a layer in Flash higher than the rotating movie clip. Thats all.

Thank you both. At least now I know it's done on the photography end an don't on my end, the web designer and developer. Yeah, I knew how the picture was photoshopped with gradients and the like. I was wondering/hoping there was some way they used Photoshop or maybe Photoshop and Illustrator or any portion(s) of the creative suite to achieve the effect. I can stop searching the internet for a solution I'm not going to find.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.