Skip to main content

Posts

Showing posts with the label wordpress

Registration blanket, database, info, wordpress, mySQL, e-mail

I'm making websites for a company where users have to "register" with names and a lot of different information to attend the event. (It's a video-event - info would be name, e-mail etc.) I now got a Wordpress webpage, at the blanket doesn't necessary need to be on the site, but can open in a separate window. I need to, somehow make it easy for admin to look at the users who registered, send them e-mails etc. Make a list of everyone who register, for the admin to see. How would be the easiest way to do this? I know how to make a form, and pull the information into the database.. Any good ideas, plugins or examples?? Thanks

DOM Manipulation in Wordpress (and elsewhere) using php

I'm quite new to the DOM manipulation world and I would like to get a head start in order to avoid common errors. I am looking for the most efficient way to manipulate content generated by wordpress using php. At the moment I am using Simple HTML Dom which seems to work just fine. However I recently found DOMDocument and a few others and it would be very helpfull if someone cleared out which one is faster, better or at least will generate less errors in case of really bad markup. Also on the side can someone explain what is this syntax (instead of $html this @$html) Thank you very much

Iframe full height in a wordpress page problems (without scroll bar)

Am trying to get this code <iframe src="http://www.play-asia.com/paOS-38-19-0,,none,0,0,0,0,trans,000000,left,0,0-49-en-76-5-70-dhf7-6-2-78-2i-90-f8z9-33-iframe_banner-40-6-44-100%2525.html" style="border-style: none; border-width: 0px; border-color: #FFFFFF; padding: 0px; margin: 0px; scrolling: vertical; frameborder: 0;" scrolling="vertical" frameborder="0" width="100%25" height="1428"></iframe> To fill the page (height wise) and also without the scroll bar ive tryed and tryed to use css without any luck Anyone have any ideas how/if I do do this? Thanks

Why does this code make my screen go blank in admin when I put it in functions.php?

When publishing content or changing any settings in the admin, the screen goes blank, I found that it's due to this code in my functions.php file. Is there something wrong with it? <?php if ( function_exists('register_sidebar') ) { register_sidebar(array( 'name'=> 'Footer', 'id' => 'footer', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<div class="title">', 'after_title' => '</div>' )); register_sidebar(array( 'name'=> 'Right-Sidebar', 'id' => 'rightsidebar', 'before_widget' => '<div class="white-bar">', 'after_widget' => '</div>', 'before_title' => '<div class="title">', 'after_title' => '</div>' )); register_sid