Making changes to PHP web pages

Hi. I am wondering if I can just open a .php file in DW and
just make text and image changes just as I would an html file. Or
do I need to know and be able to mess with PHP code to do this.
Thanks in advance.
-Bonzojr

You can edit it as you would any other HTML page. But, if
it's dynamically
produced markup, you may not see what you expect to see....
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"bonzojr" <[email protected]> wrote in
message
news:e2t7c8$jdi$[email protected]..
> Hi. I am wondering if I can just open a .php file in DW
and just make text
> and
> image changes just as I would an html file. Or do I need
to know and be
> able to
> mess with PHP code to do this. Thanks in advance.
>
> -Bonzojr
>

Similar Messages

  • Connect java to php web page

    Hello...
    I am new in this forum, so I am sorry if I post my question in wrong place.
    I have php web page and want to call my java classes i.e connect java to php. My java code will read from file some info. then will organize these info. finally, the java will write the organized info. in file, the php will display the content of the file.
    can help me please to achieve this goal...
    thanks in advance
    ibtesam saleh

    I do not how to use JPoller, put it looks very advanced.
    Or you can use a simple code in (java/perl/c/what so every u know)
    void main(){
    while (true) {
    checkDirectoryAndReadNewCommandsAndWriteNewOutputs();
    Thread.sleep(waitTime);
    }and put your program on your windows/linux startUp
    Or you can learn using sockets in java and write your own html service with port 80 (I did some experiments)
    Or you can try to use WebService example from Netbeans program (I tried it worked for me)
    Or you can learn J2EE (I have never find the time to look at)
    Or ... many ideas, to time :)

  • I updated to os x 10.8.5 today and now I cannot publish changes to my web page through iweb.  iweb crashes every time I try to publish

    I updated to os x 10.8.5 today and now I cannot publish changes to my web page through iweb.  iweb crashes every time I try to publish

    First do the following:
    1 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete iWeb's cache file, Cache.db, that is located in your
    User/Home/Library/Caches/com.apple.iWeb folder (Snow Leopard and Earlier).
    NOTE:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    Next, in Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and press the Return key - 10.7: Un-hide the User Library folder.
    To open your domain file in Lion or Mountain Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file in your Home/Library/Application Support/iWeb folder that you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • Unkown failure when submitting a form to PHP web page

    Hello.
    I've been having a following issue when using Adobe Reader X version 10.1.3.23 and the newest version.
    An error occurred during submit process. Unkown failure.
    This happens when the document is receiving data from web page.
    Following javascript is behind the submit button:
    this.submitForm({
    cURL: "http://path.to.url/index.php",
    cSubmitAs: "XFDF" // the default, not needed here
    In the web page there is a script that processes the data and after that it sends pdf document to the user that has submitted the form:
    header('Content-type: application/pdf');
    header('Content-Disposition: attachment; filename="confirmation.pdf"');
    readfile('confirmation.pdf');
    The problem only occurs on some computers i've tried this form. I have no idea why this is happening. Any ideas?

    The submit button is in the PDF file.
    http://s29.postimg.org/v5y4hmyg7/error.png

  • How to send Parameters FORM to PHP WEB Page with method POST (secure)?

    Hello everyone,
    i hope someone can help me to find a solution to this problem!
    i have to send "+precious+" parameters from an oracle form to php page, like username and password, with a secure method... i tried with WEB.SHOW_DOCUMENT procedure but it uses GET Method and when the web page open up you can read those parameters in the url...no good!
    some suggestion?
    Thank a lot in advance... FMicio

    The other way you have is to make a PJC java bean ...
    which uses HTTPClient library..
    for example:
    PostMethod post = new PostMethod("http://jakarata.apache.org/");
            NameValuePair[] data = {
              new NameValuePair("user", "joe"),
              new NameValuePair("password", "bloggs")
            post.setRequestBody(data);
            // execute method and handle any error responses.
            InputStream in = post.getResponseBodyAsStream();
            // handle response.I have done a multipart form data post to upload files to my db over httpClient.. and other things...
    Or with java.net.* api-s
    try {
        // Construct data
        String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
        data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");
        // Send data
        URL url = new URL("http://hostname:80/cgi");
        URLConnection conn = url.openConnection();
        conn.setDoOutput(true);
        OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
        wr.write(data);
        wr.flush();
        // Get the response
        BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
        String line;
        while ((line = rd.readLine()) != null) {
            // Process line...
        wr.close();
        rd.close();
    } catch (Exception e) {
    }Or you can call your web page (post data) from your database
    http://awads.net/wp/2005/11/30/http-post-from-inside-oracle/
    Edited by: Peterv6i on Mar 30, 2012 3:49 PM
    Edited by: Peterv6i on Mar 30, 2012 3:55 PM

  • Change background of web page composer

    Hi, someone knows how change the background of the web page composer?
    I have seen that the body have "class=prtlBody urFontBaseFam urScrl", but I do not know where is possible to change that style or to change that line.
    thanks.
    regards.

    Hi,
    WPC uses the theme from the portal and his own theme. The portal theme can be controlled by the online and offline theme editor. There you can also define the background color of the whole portal. The WPC themes can be found at:
    /etc/wpceditor/css/runtime
    -> content.css
    -> sdn_apps.css
    -> sdn_general.css
    These WPC themes can be edited using a CSS editor or any text editor and will only be used by WPC.
    The actual HTML tags (class, id, divs) used by WPC are defined in the page template. In a standard WPC page:
    <table class="wpc_1c_outertable">
        <COLGROUP>
            <COL class="wpc_1c_col1" />
        </COLGROUP>
         <tr class="wpc_1c_tr_o">
    If you would change the background of the WPC content, change / define a CSS for .wpc_1c_outertable
    Of course you can create your own pages and own divs that will be used by WPC.
    br,
    Tobias

  • Want to pass Realm login username to php web page

    I have a web directory set up as a Realm via Server Admin. I'd like to grab the authentication info (really just the username) and use it via PHP to compare against a mysql table of users to pull out username and real name so the user doesn't have to log in twice (once to access the Realm, once to authenticate to Mysql in a php form.)
    I've searched the web and these discussions but have not found any documentation that tells me that I can access or display the Realm authentication username.
    Is this even possible?

    The PHP documentation seems to have this covered:
    http://us3.php.net/manual/en/features.http-auth.php
    Once the user has filled in a username and a password, the URL containing the PHP script will be called again with the predefined variables PHPAUTHUSER, PHPAUTHPW, and AUTH_TYPE set to the user name, password and authentication type respectively.
    echo "<p>Hello {$SERVER['PHP_AUTHUSER']}.</p>";
    echo "<p>You entered {$SERVER['PHP_AUTHPW']} as your password.</p>";

  • Change settings for Web Page

    I am trying to change the color of my internet page at the top and along sides and bottom-I just got it back from the HP service center and they put a new motherboard in it and now I am trying to change the ugly grayish blue colors to something more attractive and it won't let me.It is windows 7 home premium edition. Can someone tell me why this is happening and help me please.

    Busydizzy, welcome to the forum.
    Which browser are you using; i.e. IE, Firefox, Google Chrome?  Also, you say you are trying to change the color of your Internet page.  Which page are you using for your home page?
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Safari Font has changed on some web pages

    The font on my Safari application has changed for some sites including YouTube and Yahoo. Most other sites are unaffected, including Apple's site. The font is hard to read and I cannot figure out how to get it to go back to it's "factory setting" so to speak.
    I've tried going to Safari on the status bar. Then to Preferences>Appearance and changed both standard font and fixed-width font to Times at size 16. This has not solved my problem. Default encoding is "Western (Mac OS Roman)
    I don't know if it is related, but I recently installed a large pack of fonts to use in Photoshop. The problem started somewhat after that.
    Any help or suggestions would be appreciated!

    Phil --
    Without a uploaded photo of the garbled font,
    I would suggest looking for Helvetica Fractions if
    the garbled font has some numbers in it.
    You may have duplicates of Helvetica, or Helvetica Neue
    or Arial. The font you're talking about seems to be a sans serif,
    so I would start carefully look at Helvetica and Arial (all subsets, too)
    in Font Book.

  • How can I recive automatic web pag updates for a specific web page when it changes?

    I want to be automatically notified of changes to this web page:
    http://soundcyclists.com/SpecialEvents.htm#CapeTrip
    Context of web address:
    NOTE: CAPE TRIP (September 8 - September 11)
    =====================================
    In the next few days, limited reservations for this trip will be open to SCBC members. It is important that you to read all the information posted at http://soundcyclists.com/SpecialEvents.htm#CapeTrip about the trip so you can decide if you want to go.
    IMPORTANT: If you decide you want to go, you will need to standby in the next few days when the reservation system is opened, since there is limited space and there has already been an expressed interest by many in going.
    We want to give all members a fair and equal opportunity to reserve a spot but you must know reservations are on a first come, first server bases so you must be ready when the link to the reservation system appears. Just return to the URL above (you may want to bookmark it), where you will be able to access the system when it's available.
    Once the limited is reached, the system will be shut down. Any reservation that get through after the limit is reached and before the system is turned off, will be refunded.
    Payment will be made through our PayPal system so as they say, have your credit card ready. Be sure to read the posting for details in advance of the reservation system becoming available.

    *AlertBox: https://addons.mozilla.org/firefox/addon/alertbox/
    *Check4Change: https://addons.mozilla.org/firefox/addon/check4change/ www.check4change.com/
    *Update Scanner: https://addons.mozilla.org/firefox/addon/update-scanner/ updatescanner.mozdev.org/

  • How do I view my web pages in the browser again?

    I was able to work on my web pages in Dreamweaver MX2004 and view them in a browser until 3 days ago.  I have also been able to make changes on my web pages which showed up in my website until around 3 days ago.  i am very frustrated. I can no longer view them in a browser or make changes that show up on my website.   Any suggestions?

    I didn't install anything new.  I am using Windows 7 on a new computer and had successfully gotten my Dreamweaver installed and running.  I was able to view my pages in the browser just fine.  I made changes to my site just fine.  Now when i go to F12 to preview in the browser, all I get is a blank page showing my connection number to my web host and in little letters at the top, it says "pageok".  I have always seen the page and could correct any mistakes, but now I can't see the page.  It's also unbelievable the changes I have tried to make on some pages show up in my local and remote pages on my computer but do not show up when I go to the website.

  • I am connected to my remote server and "put files" but the web page files do not update, whats going on?

    I really can't figure this out:
    So I use a different computer at school for web design, I bought Dreamweaver to work on it at home, I get the files fine from the server that I uploaded at school but then I make changes at home computer and connect and "put" them and I check online and the web page doesn't change one bit.
    I don't have the exact file extensions from the computer at school but when I connect and get I have a similar folder(s) set up and then it downloads them into Dreamweaver file manager box and makes the folders there I downloaded. The site shows up fine in Dreamweaver after I "get" so great I thinking.
    But... not so fast, I change the page in Dreamweaver, preview n a browser and look right on so I "put", connect to server and upload. Then I check online an its still the same I uploaded the CSS and HTML and dependent files by dragging over and also using the up arrow "put" as well but nothing changes on the web page online.
    What is happening here I am so confused?
    Thanks a bunch, I mean I can still preview as I go but I really curious why my "put" files don't change my web page like at all!

    Have you tried refreshing the browser, or deleting the browser cache?

  • Link text document to web page

    I want to change text in my word document and have it change in the web page as Indesign does with its links window. Is this possible

    By using server-side includes,when one changes text in the include file, that content appears changed in the parent file.  But that include file cannot be anything other than a plain text file, or an HTML file.  It cannot be a Word document, or any other document with proprietary formatting.

  • CUC User Web Page Customization

    Hi Guys,
    Is there any way to change CUC User Web Page look and feel with customer details?
    Rgds,
    Ashraf

    Ashraf,
    AFAIK, it's not possible.
    Sorry mate !!
    GP.

  • Can iWeb make changes (update) to Web site made with Microsoft Front Page

    Hello,
    Our local historical society hired a web master to create a web site for us. He made it with Microsoft Front Page. I was able to make changes until my husband upgraded to Microsoft Office integral 2007. My question is: Would I be able to continue making changes or upgrades to this site but using iWeb '08 instead? I would much rather use my Mac than his IBM.
    Thanks,
    S Craig

    No. iWeb can only create and edit sites that have been created from scratch in iWeb. What you might be able to do is download the files in the current site and use the image and graphic files to make a duplicate site in iWeb.
    OT

Maybe you are looking for

  • Multiple images in a table?

    Ok I decided to come ask before doing this the very long and boring way. I have a table that is 50 by 45 that I am inserting images into, is there an easier way to do this besides dragging each picture into the table one by one? I am very new to all

  • Enabling trace file in Debug mode

    Hi all how to enable the trace file in debug mode,... can any one help me in this,...

  • What should I do about trial mixup?

    I was offered the upgrade from PE 10 to 11 with serial numbers.  Now I was sent an email that my 'trial' has come to an end and I  must 'pay' for PE 11.  I entered my serial number when offered it as compensation because Photoshop is moving to Revel.

  • Get download back!!! Help!!!!!!

    I have dial-up, so my mom needed to call somebody, but right then I was downloading something. I wanted to see if I could download without being on the internet, so I signed off, but then a message said I needed an internet connection, or something.

  • CC plan allow to install Photoshop on a PC (running Windows 7) AND a Macbook (running Mac OS X)?

    Hello, I'm photographer and i use a PC (with Windows 7) at home, for post production. When travelling, i use my Macbook Pro. I'd like to know if i can, with ONE Creative Cloud plan, install Photoshop on my PC and on my Macbook. Best regards, Sby